@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --mcp-primary: #0B1F3A;
  --mcp-accent: #D4AF37;
  --mcp-surface: #0F2A4A;
  --mcp-background: #070C14;
  --mcp-text: #F8FAFC;
  --mcp-muted: #C1CADB;
  --mcp-font: 'Manrope', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --mcp-radius: 999px;

  --bg-primary: #070C14 !important;
  --bg-inner: #0F2A4A !important;
  --bg-light: #070C14 !important;
  --bg-light-2: #0F2A4A !important;
  --bg-color: #D4AF37 !important;
  --bg-color-hover: #AE902D !important;
  --text-primary: #F8FAFC !important;
  --text-dark: #F8FAFC !important;
  --text-color: #D4AF37 !important;

  --bs-body-bg: #070C14 !important;
  --bs-body-color: #F8FAFC !important;
  --bs-link-color: #D4AF37 !important;
  --bs-link-hover-color: #AE902D !important;
  --bs-primary: #D4AF37 !important;
  --bs-secondary: #C1CADB !important;
  --bs-primary-rgb: 212, 175, 55 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  background: linear-gradient(180deg, #070C14 0%, #0B1F3A 100%) !important;
  background-color: var(--mcp-background) !important;
  color: var(--mcp-text) !important;
}

body {
  overflow-x: hidden !important;
  position: relative !important;
  font-family: var(--mcp-font) !important;
  line-height: 1.6 !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  color: var(--text-dark) !important;
}

.container,
.container-fluid {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  padding: 0 30px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 2px !important;
  line-height: 1.3 !important;
  font-weight: 600;
  color: var(--mcp-accent) !important;
  font-family: "Marcellus", serif;
}

h1 {
  font-size: 70px !important;
  line-height: 1.1 !important;
  margin-bottom: 5px !important;
  color: var(--mcp-accent) !important;
  font-family: "Funnel Display", sans-serif;
}

h1 span {
  font-weight: 500;
  background: var(--bg-color);
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 38px !important;
  font-weight: 700 !important;
}

h3 {
  font-size: 30px !important;
  margin-top: 30px !important;
}

h6 {
  font-size: 26px !important;
}

p,
li,
small,
.muted,
.subtitle {
  color: var(--mcp-muted) !important;
}

p {
  margin-bottom: 16px !important;
}

p:last-child {
  margin-bottom: 0 !important;
}

p:has(+ ul) {
  margin-bottom: 5px !important;
}

a {
  text-decoration: none !important;
  color: var(--text-color) !important;
}

a:hover {
  color: var(--bg-color-hover) !important;
}

.logo-color,
.highlight,
.section-title {
  color: var(--mcp-accent) !important;
}

.text-img {
  max-width: 240px;
  object-fit: cover;
  margin-left: 20px;
}

.hero-img {
  max-width: 400px;
}

button,
.btn,
.btn-main,
.btn-2,
.cta,
[class*="btn-"] {
  background: var(--mcp-accent) !important;
  color: var(--mcp-background) !important;
  border: 1px solid color-mix(in srgb, var(--mcp-accent) 75%, white 25%) !important;
  border-radius: var(--mcp-radius) !important;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--mcp-accent) 35%, transparent 65%) !important;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-main,
.btn-2 {
  position: relative;
  overflow: hidden;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
}

button:hover,
.btn:hover,
.btn-main:hover,
.btn-2:hover,
.cta:hover,
[class*="btn-"]:hover {
  background: var(--bg-color-hover) !important;
  color: var(--mcp-background) !important;
}

.area-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.area-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-bg .lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
  display: flex;
  justify-content: space-between;
}

.section-hero {
  position: relative;
  z-index: 0;
  background: transparent !important;
  background-image: none !important;
}

.section-hero > * {
  position: relative;
  z-index: 2;
}

.section-spacing-lg {
  padding: 120px 0 100px;
}

.section-spacing-sm {
  padding: 50px 0;
  background: transparent !important;
}

.section-spacing-sm.bg-grey {
  background: #0F2A4A !important;
}

.section-footer {
  padding: 15px 0;
  background: color-mix(in srgb, var(--mcp-surface) 88%, transparent 12%) !important;
  color: var(--mcp-text) !important;
}

.section-footer p {
  color: var(--mcp-text) !important;
  font-size: 16px;
}

.bg-grey {
  background-color: var(--bg-light-2) !important;
}

.card,
.content-box,
.faq,
.footer,
header {
  background: color-mix(in srgb, var(--mcp-surface) 88%, transparent 12%) !important;
  color: var(--mcp-text) !important;
}

#table {
  width: 100%;
  min-width: 75%;
  margin-top: 10px !important;
  margin-bottom: 15px !important;
  border-collapse: collapse !important;
  background: transparent !important;
}

#table th,
#table td {
  padding: 10px !important;
  font-size: 16px !important;
  text-align: left !important;
  border: 1px solid color-mix(in srgb, var(--mcp-accent) 25%, white 75%) !important;
  background-color: transparent !important;
}

#table th {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  font-weight: 600 !important;
  color: var(--mcp-text) !important;
  background-color: color-mix(in srgb, var(--mcp-accent) 18%, transparent 82%) !important;
}

table,
th,
td {
  border-color: color-mix(in srgb, var(--mcp-accent) 25%, white 75%) !important;
  background-color: transparent !important;
}

table {
  width: 100%;
}

.content-list a {
  color: #fff !important;
}

.content-list a:hover {
  transform: translateY(-2px) !important;
  color: var(--text-color) !important;
}

.rating {
  display: inline-block;
  min-width: 40px;
  padding: 5px 12px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  background: linear-gradient(to right, var(--bg-color), var(--bg-color-hover));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.table-main {
  width: 100% !important;
  max-width: 1400px;
  margin: 0 auto 40px;
  color: var(--text-dark);
  border: none !important;
  border-radius: 10px;
  overflow: visible !important;
  table-layout: auto !important;
  background: transparent !important;
}

.table-main th,
.table-main td {
  padding: 15px;
  text-align: center;
  border: none !important;
  background: transparent !important;
}

tr,
th,
td {
  border: none !important;
}

.tlogo img {
  width: 170px;
  height: auto;
  border-radius: 10px;
}

.bonus {
  font-size: 20px;
  vertical-align: middle;
}

.table-main .tp-btn-cpc-lg,
.table-main .tf-btn {
  text-transform: uppercase;
}

.table-main .tf-btn {
  color: #fff;
}

td.features {
  min-width: 280px !important;
  max-width: none !important;
  padding: 10px;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  vertical-align: middle;
}

td.features span,
td.features > span {
  display: block;
  margin-bottom: 4px;
  white-space: nowrap !important;
}

/* рейтинг: фиксы переносов */
.bonus-features {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.feature-item {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
  flex-wrap: nowrap !important;
}

.feature-item .fi {
  min-width: 20px !important;
  flex-shrink: 0 !important;
}

.feature-item span:not(.fi) {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.content ul {
  list-style: disc !important;
  padding-left: 1.25rem;
}

.content ul li::marker {
  color: var(--bg-color);
}

.faq-item {
  margin-bottom: 1rem;
  overflow: hidden;
  color: var(--mcp-text);
  border: 1px solid color-mix(in srgb, var(--mcp-accent) 20%, white 80%);
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--mcp-surface) 75%, white 25%) !important;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark) !important;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 17px;
  color: var(--mcp-muted) !important;
}

@media only screen and (min-width: 768px) {
  .brand-logo img {
    padding: 10px 0;
  }

  td.features {
    text-align: left;
  }
}

@media only screen and (max-width: 1000px) {
  .logo img {
    max-width: 120px;
  }

  .text-img {
    max-width: 140px;
  }

  h1 {
    font-size: 44px !important;
  }

  .d-xl-none img {
    max-width: 80px;
    margin-bottom: 30px;
  }

  .section-hero {
    padding-top: 60px;
  }

  .mobno {
    display: none;
  }

  #table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 767px) {
  .table-main {
    max-width: 98% !important;
  }

  .table-main tr {
    display: block !important;
    padding-bottom: 20px;
  }

  .table-main td {
    display: block;
    text-align: center;
  }

  .table-main .btn-default {
    margin-bottom: 20px !important;
    text-align: center;
  }

  .table tbody tr td {
    border: none;
  }

  .tlogo img {
    max-width: 250px;
    margin-top: 20px;
  }

  .bonus strong {
    padding: 15px 30px;
    font-size: 22px;
  }

  td.features {
    min-width: auto !important;
    font-size: 18px !important;
    text-align: center;
  }

  .feature-item {
    white-space: normal !important;
    flex-wrap: wrap !important;
  }

  .feature-item span:not(.fi) {
    white-space: normal !important;
  }
}