:root {
  --bg: #071a1f;
  --panel: #ffffff;
  --panel-soft: #f3f8f7;
  --text: #142326;
  --muted: #5d6f73;
  --dark: #082126;
  --accent: #00c2a8;
  --accent-dark: #008c7a;
  --gold: #f2b84b;
  --gold-dark: #c78314;
  --border: #d8e4e2;
  --green: #13a66f;
  --red: #d64545;
  --shadow: 0 14px 34px rgba(5, 34, 40, 0.14);
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #071a1f 0%, #0e3338 340px, #eef4f3 340px);
  color: var(--text);
  line-height: 1.6;
}

header {
  background: #061418;
  color: #ffffff;
  padding: 18px 24px;
  border-bottom: 3px solid var(--accent);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 156px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00c2a8, #f2b84b);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 194, 168, 0.28);
}

.logo img {
  height: 58px;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.button {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #061418;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 5px 16px rgba(242, 184, 75, 0.34);
}

.button:hover {
  transform: translateY(-1px);
}

.section {
  max-width: 1180px;
  margin: 24px auto;
  padding: 28px;
  background: var(--panel);
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 228, 226, 0.95);
}

.hero-section {
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(0, 194, 168, 0.22),
      transparent 34%
    ),
    linear-gradient(135deg, #082126, #10434a);
  color: #ffffff;
  border: 1px solid rgba(0, 194, 168, 0.35);
}

.hero-section h1 {
  color: #ffffff;
}

.hero-section p {
  color: #e8fffb;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--dark);
  line-height: 1.25;
}

h1 {
  font-size: 38px;
  margin-bottom: 16px;
}

h2 {
  font-size: 28px;
  border-left: 6px solid var(--accent);
  padding-left: 12px;
  margin-bottom: 18px;
}

h3 {
  font-size: 23px;
  margin-top: 28px;
  color: #0b3036;
}

p {
  margin: 0 0 14px;
}

.author-box {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 3px solid var(--gold);
}

.author-divider {
  width: 1px;
  height: 90px;
  background: rgba(255, 255, 255, 0.35);
}

.author-card {
  display: block;
}

.author-label {
  display: inline-block;
  background: #061418;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.author-name {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
}

.author-role {
  margin: 4px 0 0;
  color: #e8fffb;
  font-size: 18px;
}

.author-date {
  margin: 10px 0 0;
  color: #c9f5ef;
  font-size: 15px;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
}

td {
  border-bottom: 1px solid var(--border);
  padding: 16px;
  vertical-align: middle;
  background: #ffffff;
}

tr:nth-child(even) td {
  background: #f7fbfa;
}

tr:last-child td {
  border-bottom: none;
}

.brand-name {
  font-weight: 900;
  color: #071a1f;
}

.bonus-cell {
  font-weight: 800;
  text-align: center;
}

.advantage-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #e6fffb;
  color: #006b5e;
  border: 1px solid #9df2e7;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.pros-cons div {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: var(--panel-soft);
}

.pros-cons div:first-child {
  border-top: 5px solid var(--green);
}

.pros-cons div:last-child {
  border-top: 5px solid var(--red);
}

.list-title {
  margin: 0 0 10px;
  font-weight: 900;
  color: #071a1f;
  font-size: 20px;
}

ul,
ol {
  margin: 12px 0 0;
  padding-left: 22px;
}

li {
  margin-bottom: 8px;
}

li::marker {
  color: var(--accent-dark);
}

.expert-note {
  margin-top: 18px;
  padding: 18px;
  border-left: 5px solid var(--accent);
  background: #e6fffb;
  border-radius: 14px;
}

.expert-note p {
  margin: 0;
}

footer {
  background: #061418;
  color: #ffffff;
  padding: 28px 24px;
  margin-top: 32px;
  border-top: 3px solid var(--accent);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand p {
  margin: 6px 0;
}

@media (max-width: 768px) {
  .header-inner,
  .author-box,
  .pros-cons {
    display: block;
  }

  .header-actions {
    margin-top: 14px;
    flex-wrap: wrap;
  }

  .author-divider {
    display: none;
  }

  .author-card {
    margin-bottom: 18px;
  }

  .section {
    margin: 16px;
    padding: 20px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  table {
    display: block;
    overflow-x: auto;
  }

  .advantage-badge {
    white-space: normal;
  }
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.bonus-card {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8f7 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(5, 34, 40, 0.08);
}

.bonus-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #06343a;
}

.rules-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.rules-list li {
  background: #f3f8f7;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 0;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.payment-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(5, 34, 40, 0.08);
}

.payment-card h3 {
  margin-top: 0;
  color: #06343a;
}

.limit-table {
  border: none;
  border-spacing: 0 10px;
  margin-top: 22px;
}

.limit-table tr {
  box-shadow: 0 8px 20px rgba(5, 34, 40, 0.08);
}

.limit-table td {
  border-bottom: none;
  background: #ffffff;
  padding: 16px;
}

.limit-table tr:first-child td {
  background: linear-gradient(135deg, #06343a, #0f5961);
  color: #ffffff;
}

.limit-table tr td:first-child {
  border-radius: 14px 0 0 14px;
  color: #06343a;
  font-weight: 800;
}

.limit-table tr td:last-child {
  border-radius: 0 14px 14px 0;
}

.limit-table tr:first-child td:first-child {
  color: #ffffff;
}

.limit-note {
  margin-top: 18px;
  background: #fff8e7;
  border: 1px solid #f4d28a;
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  padding: 18px;
}

@media (max-width: 768px) {
  .bonus-grid,
  .payment-grid,
  .rules-list {
    grid-template-columns: 1fr;
  }

  .limit-table {
    display: block;
    overflow-x: auto;
  }
}
.mobile-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-left: 0;
  list-style: none;
  margin-top: 18px;
}

.mobile-benefits li {
  background: #f3f8f7;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 15px;
  margin-bottom: 0;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.game-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(5, 34, 40, 0.08);
}

.game-card h3 {
  margin-top: 0;
  color: #06343a;
}

.provider-table {
  border-collapse: separate;
  border-spacing: 0 10px;
  border: none;
  margin-top: 22px;
}

.provider-table tr {
  box-shadow: 0 8px 20px rgba(5, 34, 40, 0.08);
}

.provider-table td {
  border-bottom: none;
  background: #ffffff;
  padding: 16px;
}

.provider-table tr:first-child td {
  background: linear-gradient(135deg, #06343a, #0f5961);
  color: #ffffff;
  font-weight: 900;
}

.provider-table tr td:first-child {
  border-radius: 14px 0 0 14px;
  color: #06343a;
  font-weight: 800;
  width: 30%;
}

.provider-table tr td:last-child {
  border-radius: 0 14px 14px 0;
}

.provider-table tr:first-child td:first-child {
  color: #ffffff;
}

.help-table {
  border-collapse: separate;
  border-spacing: 0 10px;
  border: none;
  margin-top: 22px;
}

.help-table tr {
  box-shadow: 0 8px 20px rgba(5, 34, 40, 0.08);
}

.help-table td {
  border-bottom: none;
  background: #ffffff;
  padding: 16px;
}

.help-table tr:first-child td {
  background: linear-gradient(135deg, #06343a, #0f5961);
  color: #ffffff;
  font-weight: 900;
}

.help-table tr td:first-child {
  border-radius: 14px 0 0 14px;
  color: #06343a;
  font-weight: 800;
  width: 35%;
}

.help-table tr td:last-child {
  border-radius: 0 14px 14px 0;
}

.help-table tr:first-child td:first-child {
  color: #ffffff;
}

.responsible-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-left: 0;
  list-style: none;
  margin-top: 18px;
}

.responsible-list li {
  background: #fff8e7;
  border: 1px solid #f4d28a;
  border-radius: 14px;
  padding: 13px 15px;
  margin-bottom: 0;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}

.faq-item {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  padding: 18px 54px 18px 18px;
  box-shadow: 0 8px 22px rgba(5, 34, 40, 0.08);
}

.faq-question {
  margin: 0;
  color: #06343a;
  font-size: 20px;
}

.faq-answer {
  margin: 12px 0 0;
  color: var(--text);
}

.toggle {
  position: absolute;
  opacity: 0;
}

.icon {
  position: absolute;
  right: 18px;
  top: 22px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e6fffb;
  border: 1px solid #9df2e7;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: var(--accent-dark);
}

.icon::before {
  width: 12px;
  height: 2px;
  top: 11px;
  left: 6px;
}

.icon::after {
  width: 2px;
  height: 12px;
  top: 6px;
  left: 11px;
}

.toggle:checked ~ .icon::after {
  display: none;
}

@media (max-width: 768px) {
  .mobile-benefits,
  .game-grid,
  .responsible-list {
    grid-template-columns: 1fr;
  }

  .provider-table,
  .help-table {
    display: block;
    overflow-x: auto;
  }
}
