/* --------------------
  CSS Variables
--------------------- */
:root {
  --bg-dark: #0f0f0f;
  --bg-block: #1a1a1a;
  --text: #f1f1f1;
  --text-muted: #888;
  --primary: #00e1ff;
  --accent: #00ffa3;
  --warning: #ff4f4f;
  --success: #00ffa3;
  --border: #222;
  --font-main: 'Play', sans-serif;
  --section-padding: 64px;
  --section-gap: 48px;
  --section-side-padding: 24px;
}

/* --------------------
  Base styles & resets
--------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
}

section {
  padding: var(--section-padding) var(--section-side-padding);
}

section + section {
  margin-top: var(--section-gap);
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  :root {
    --section-padding: 40px;
    --section-gap: 32px;
    --section-side-padding: 16px;
  }
}

/* Utility: alignment */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.bg-block {
  background-color: var(--bg-block);
}

.border {
  border: 1px solid var(--border);
}

.rounded {
  border-radius: 10px;
}

.shadow {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.wide {
  max-width: 100%;
}

.wrap {
  flex-wrap: wrap;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* --------------------
  Typography
--------------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
  color: var(--text-muted);
}

p {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

strong {
  color: var(--accent);
}

em {
  color: var(--primary);
  font-style: italic;
}

/* --------------------
  Global List Styles
--------------------- */
ul, ol {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
  color: var(--text);
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

ul li::marker {
  color: var(--accent);
}

ol li::marker {
  color: var(--primary);
  font-weight: bold;
}

/* Альтернативный стиль списка */
.list-muted {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Inline list (горизонтальный список без точек) */
.list-inline {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --------------------
  Containers
--------------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------
  Header
--------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(19, 19, 19, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: #131313;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
}

.promo-header {
  position: static;
  background: none;
  padding: 48px 24px;
  text-align: center;
}

.promo-header h1 {
  font-size: 2rem;
  color: var(--primary);
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
}

/* --------------------
  Promo Header Expansion
--------------------- */
.promo-header {
  position: static;
  text-align: center;
  padding: 64px 24px 40px;
  background: none;
}

.promo-header h1 {
  font-size: 2.25rem;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.promo-header .promo-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.promo-header .btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: var(--bg-dark);
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: box-shadow 0.3s ease;
}

.promo-header .btn:hover {
  box-shadow: 0 4px 12px rgba(0, 255, 163, 0.25);
}

@media (max-width: 768px) {
  .promo-header h1 {
    font-size: 1.75rem;
  }
  .promo-header .promo-sub {
    font-size: 1rem;
  }
}
/* --------------------
  Sidebar Table of Contents
--------------------- */
.table-of-contents {
  max-height: calc(100vh - 140px); /* адаптируй при необходимости */
  overflow-y: auto;
  padding-right: 8px; /* для скроллбара */
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  background-color: var(--bg-block);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  max-width: 280px;
  margin: 0;
  flex-shrink: 0;
}

.table-of-contents::-webkit-scrollbar {
  width: 6px;
}

.table-of-contents::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.table-of-contents::-webkit-scrollbar-track {
  background: transparent;
}

.table-of-contents h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.table-of-contents ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-of-contents a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.table-of-contents a:hover,
.table-of-contents a.active {
  color: var(--accent);
}

@media (min-width: 1024px) {
  .table-of-contents {
    position: sticky;
    top: 120px;
    align-self: flex-start;
  }

  .layout-with-sidebar {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }

  .layout-with-sidebar .main-content {
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* --------------------
  Navigation
--------------------- */
.nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s ease, border-bottom 0.2s ease;
  border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.burger {
  display: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.burger span {
  height: 3px;
  background: var(--text);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
    background: var(--bg-block);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .nav-list.open {
    display: flex;
  }
}

/* CTA Button */
.cta-btn {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: var(--bg-dark);
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.cta-btn:hover {
  opacity: 0.85;
}

/* --------------------
  Cards
--------------------- */
.card {
  background-color: var(--bg-block);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 225, 255, 0.08);
}

.card h3 {
  color: var(--accent);
  margin-top: 0;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.card .btn {
  margin-top: 10px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* --------------------
  Tables
--------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: var(--bg-block);
  color: var(--text);
}

th, td {
  padding: 14px 18px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

thead {
  background-color: #1c1c1c;
}

th {
  color: var(--primary);
  font-weight: 600;
}

tr:nth-child(even) {
  background-color: #151515;
}

tr:hover {
  background-color: #222;
}

/* --------------------
  Callouts
--------------------- */
.callout {
  background: linear-gradient(90deg, var(--primary)10%, var(--accent)10%);
  border-left: 4px solid var(--accent);
  padding: 20px;
  margin: 30px 0;
  border-radius: 6px;
  color: var(--text);
  font-size: 0.95rem;
}

.callout.warning {
  background-color: #331c1c;
  border-left-color: var(--warning);
}

.callout.success {
  background-color: #1c3323;
  border-left-color: var(--success);
}

/* --------------------
  Concise Intro Section
--------------------- */
.concise-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
  text-align: left;
}

.concise-intro h2 {
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  text-align: center;
}

.concise-intro p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .concise-intro {
    padding: var(--section-padding) 16px;
  }
}

/* --------------------
  Step-by-Step Guide Section
--------------------- */
.how-to-use {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

.how-to-use h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
}

.step-by-step-list {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-by-step-list li {
  position: relative;
  background-color: var(--bg-block);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px 16px 52px;
  color: var(--text);
  line-height: 1.6;
}

.step-by-step-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  background-color: var(--accent);
  color: var(--bg-dark);
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.important-tips {
  margin-top: 3rem;
  background-color: #1b1b1b;
  padding: 20px;
  border-left: 4px solid var(--accent);
  border-radius: 6px;
}

.important-tips h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.important-tips ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.important-tips p {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .how-to-use {
    padding: var(--section-padding) 16px;
  }

  .step-by-step-list li {
    padding-left: 48px;
  }
}

/* --------------------
  Promo Codes Table Section
--------------------- */
.current-promo-codes {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

.current-promo-codes h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

.promo-codes-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-block);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.95rem;
}

.promo-codes-table th,
.promo-codes-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.promo-codes-table thead th {
  background-color: #1c1c1c;
  color: var(--primary);
  font-weight: 600;
}

.promo-codes-table tbody tr:hover {
  background-color: #1a1a1a;
}

.note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 768px) {
  .promo-codes-table th,
  .promo-codes-table td {
    padding: 12px;
    font-size: 0.9rem;
  }
}

/* --------------------
  Calculator Section
--------------------- */
.calculators {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

.calculators h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

.calculator {
  background-color: var(--bg-block);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.calculator h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.calculator p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
}

.why-use-calculators {
  background-color: #1b1b1b;
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 6px;
  margin-top: 2rem;
}

.why-use-calculators h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.why-use-calculators ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-use-calculators p {
  color: var(--text-muted);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .calculator {
    padding: 16px;
  }
}
.calculator {
  background: linear-gradient(135deg, #1a1a1a, #131313);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calculator:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 225, 255, 0.12);
}

.calculator h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-align: center;
}

.calculator p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1rem;
}

.calculator input,
.calculator select {
  width: 100%;
  background-color: #101010;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.calculator input:focus,
.calculator select:focus {
  outline: none;
  border-color: var(--accent);
}

.calculator button {
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #000;
  font-weight: 700;
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.calculator button:hover {
  opacity: 0.9;
}

#bonusResult,
#rakebackResult {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1rem;
  background-color: #161616;
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  border-radius: 6px;
}
/* --------------------
  Benefits Section
--------------------- */
#benefits {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

#benefits h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
}

.benefits-visual {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* --------------------
  Tips Section
--------------------- */
#tips {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

#tips h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

#tips h3 {
  margin-top: 2rem;
  color: var(--accent);
  font-size: 1.25rem;
}

#tips h4 {
  color: var(--text);
  font-size: 1.1rem;
  margin-top: 1rem;
}

#tips p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.7;
}

#tips code {
  background-color: #1c1c1c;
  color: var(--primary);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.95rem;
}

#tips ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

#tips ul li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  #tips {
    padding: var(--section-padding) 16px;
  }
}

/* --------------------
  Issues Section
--------------------- */
#issues {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

#issues h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

#issues h3 {
  margin-top: 2rem;
  color: var(--accent);
  font-size: 1.25rem;
}

#issues p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.7;
}

#issues ul {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

#issues ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

@media (max-width: 768px) {
  #issues {
    padding: var(--section-padding) 16px;
  }
}

/* --------------------
  Issues Table Layout
--------------------- */
.issue-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 1rem;
  background-color: var(--bg-block);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.issue-col h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.issue-col ul {
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.issue-col ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

@media (max-width: 768px) {
  .issue-table {
    grid-template-columns: 1fr;
  }
}

/* --------------------
  FAQ / Glossary Accordion
--------------------- */
details {
  background-color: var(--bg-block);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 16px 0;
  padding: 16px 20px;
  color: var(--text);
  transition: background-color 0.3s;
  position: relative;
}

details:hover {
  background-color: #1c1c1c;
}

details[open] {
  background-color: #1f1f1f;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  padding-right: 24px;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  font-size: 0.8rem;
  color: var(--accent);
}

details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

details p {
  margin-top: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------
  Why Stake.us Section
--------------------- */
#why-stakeus {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

#why-stakeus h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
}

#why-stakeus h3 {
  color: var(--accent);
  margin-top: 2rem;
  font-size: 1.25rem;
}

#why-stakeus p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text);
}

#why-stakeus ul {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

#why-stakeus ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

@media (max-width: 768px) {
  #why-stakeus {
    padding: var(--section-padding) 16px;
  }
}
/* --------------------
  Testimonials Carousel
--------------------- */
.testimonials-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 1rem;
  scroll-padding-inline: 20px;
  scroll-behavior: smooth;
}

.testimonial {
  flex: 0 0 100%;
  max-width: 700px;
  scroll-snap-align: center;
  background-color: var(--bg-block);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* --------------------
  Testimonial New Layout
--------------------- */
.testimonials-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonials-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 20px;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.testimonial {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: center;
}

.testimonial-summary {
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}

.testimonial-body p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.testimonial-author {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-nav button {
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.carousel-nav button:hover {
  background-color: var(--primary);
}
/* --------------------
  Scrollbar Styling
--------------------- */
.testimonials-carousel::-webkit-scrollbar {
  height: 8px;
}

.testimonials-carousel::-webkit-scrollbar-track {
  background: var(--bg-dark);
  border-radius: 4px;
}

.testimonials-carousel::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.testimonials-carousel::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.testimonials-carousel {
  scrollbar-color: var(--accent) var(--bg-dark);
  scrollbar-width: thin;
}

/* --------------------
  Promo Code Expiry Section
--------------------- */
#promo-code-expiry {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

#promo-code-expiry h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

#promo-code-expiry h3 {
  color: var(--accent);
  margin-top: 2rem;
  font-size: 1.25rem;
}

#promo-code-expiry p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text);
}

#promo-code-expiry ul {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

#promo-code-expiry ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

@media (max-width: 768px) {
  #promo-code-expiry {
    padding: var(--section-padding) 16px;
  }
}

/* --------------------
  Mobile Usage Section
--------------------- */
#mobile-friendly-usage {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

#mobile-friendly-usage h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

#mobile-friendly-usage h3 {
  color: var(--accent);
  margin-top: 2rem;
  font-size: 1.25rem;
}

#mobile-friendly-usage p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text);
}

#mobile-friendly-usage ol {
  padding-left: 1.5rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

#mobile-friendly-usage ul {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

#mobile-friendly-usage ul li,
#mobile-friendly-usage ol li {
  margin-bottom: 0.5rem;
}

#mobile-friendly-usage table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: var(--bg-block);
  color: var(--text);
}

#mobile-friendly-usage th,
#mobile-friendly-usage td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

#mobile-friendly-usage thead th {
  background-color: #1c1c1c;
  color: var(--primary);
}

@media (max-width: 768px) {
  #mobile-friendly-usage {
    padding: var(--section-padding) 16px;
  }

  #mobile-friendly-usage table,
  #mobile-friendly-usage thead,
  #mobile-friendly-usage tbody,
  #mobile-friendly-usage th,
  #mobile-friendly-usage td,
  #mobile-friendly-usage tr {
    display: block;
  }

  #mobile-friendly-usage td {
    padding-left: 50%;
    position: relative;
  }

  #mobile-friendly-usage td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    top: 12px;
    font-weight: bold;
    color: var(--text-muted);
  }

  #mobile-friendly-usage th {
    display: none;
  }
}

/* --------------------
  Comparison Section
--------------------- */
#comparison-with-competitors {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

#comparison-with-competitors h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

#comparison-with-competitors h3 {
  color: var(--accent);
  margin-top: 2rem;
  font-size: 1.25rem;
}

#comparison-with-competitors p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text);
}

#comparison-with-competitors ul {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

#comparison-with-competitors ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

#comparison-with-competitors table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: var(--bg-block);
  color: var(--text);
}

#comparison-with-competitors th,
#comparison-with-competitors td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

#comparison-with-competitors thead th {
  background-color: #1c1c1c;
  color: var(--primary);
}

@media (max-width: 768px) {
  #comparison-with-competitors {
    padding: var(--section-padding) 16px;
  }

  #comparison-with-competitors table,
  #comparison-with-competitors thead,
  #comparison-with-competitors tbody,
  #comparison-with-competitors th,
  #comparison-with-competitors td,
  #comparison-with-competitors tr {
    display: block;
  }

  #comparison-with-competitors td {
    padding-left: 50%;
    position: relative;
  }

  #comparison-with-competitors td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    top: 12px;
    font-weight: bold;
    color: var(--text-muted);
  }

  #comparison-with-competitors th {
    display: none;
  }
}

/* --------------------
  Security & Fair Play
--------------------- */
#security-fair-play {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

#security-fair-play h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

#security-fair-play h3 {
  color: var(--accent);
  margin-top: 2rem;
  font-size: 1.25rem;
}

#security-fair-play p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text);
}

#security-fair-play em {
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  #security-fair-play {
    padding: var(--section-padding) 16px;
  }
}

.security-infographic {
  margin-top: 2rem;
  background-color: #1c1c1c;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.security-infographic h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.security-infographic img {
max-width: 100%;
}
/* --------------------
  Contact Support Section
--------------------- */
#contact-support {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

#contact-support h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

#contact-support h3 {
  color: var(--accent);
  margin-top: 2rem;
  font-size: 1.25rem;
}

#contact-support p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text);
}

#contact-support ul {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

#contact-support ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

#contact-support em {
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  #contact-support {
    padding: var(--section-padding) 16px;
  }
}

.support-infographic {
  margin-top: 2rem;
  padding: 20px;
  background-color: #1c1c1c;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.support-infographic h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.support-infographic img {
max-width: 100%;
}
/* --------------------
  Legal Restrictions
--------------------- */
#legal-restrictions {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

#legal-restrictions h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

#legal-restrictions h3 {
  color: var(--accent);
  margin-top: 2rem;
  font-size: 1.25rem;
}

#legal-restrictions p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text);
}

#legal-restrictions ul {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

#legal-restrictions ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

#legal-restrictions em {
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  #legal-restrictions {
    padding: var(--section-padding) 16px;
  }
}

.restricted-map {
  margin-top: 2rem;
  background-color: #1a1a1a;
  padding: 20px;
  border-left: 4px solid var(--warning);
  border-radius: 8px;
  text-align: center;
}

.restricted-map h4 {
  color: var(--warning);
  margin-bottom: 1rem;
}

.restricted-map img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.restricted-map .map-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------
  Video Tutorial Section
--------------------- */
#video-tutorial {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

#video-tutorial h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

#video-tutorial h3 {
  color: var(--accent);
  margin-top: 2rem;
  font-size: 1.25rem;
}

#video-tutorial p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text);
}

#video-tutorial ul {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

#video-tutorial ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

#video-tutorial em {
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  #video-tutorial {
    padding: var(--section-padding) 16px;
  }
}

.promo-code-video {
  margin-top: 2rem;
  background-color: #1a1a1a;
  padding: 20px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
}

.promo-code-video h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.promo-code-video .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.promo-code-video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

/* --------------------
  Newsletter Section
--------------------- */
#newsletter-subscription {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

#newsletter-subscription h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

#newsletter-subscription h3 {
  color: var(--accent);
  margin-top: 2rem;
  font-size: 1.25rem;
}

#newsletter-subscription p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text);
}

#newsletter-subscription ul {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

#newsletter-subscription ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

#newsletter-subscription em {
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  #newsletter-subscription {
    padding: var(--section-padding) 16px;
  }
}

.newsletter-incentive {
  margin-top: 2rem;
  background-color: #1c1c1c;
  padding: 20px;
  border-left: 4px solid var(--success);
  border-radius: 8px;
}

.newsletter-incentive h4 {
  color: var(--success);
  margin-bottom: 1rem;
}

.newsletter-incentive ul {
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.newsletter-incentive ul li {
  margin-bottom: 0.5rem;
}

.newsletter-incentive .note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------
  Social Media Section
--------------------- */
#social-media {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding) var(--section-side-padding);
}

#social-media h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

#social-media h3 {
  color: var(--accent);
  margin-top: 2rem;
  font-size: 1.25rem;
}

#social-media p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text);
}

#social-media ul {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

#social-media ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

#social-media em {
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  #social-media {
    padding: var(--section-padding) 16px;
  }
}
.social-embed,
.discord-cta {
  margin-top: 2rem;
  background-color: #1b1b1b;
  padding: 20px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
}

.social-embed h4,
.discord-cta h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.cta-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background-color: var(--accent);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}

.cta-btn:hover {
  background-color: var(--accent-hover);
}

/* --------------------
  Footer
--------------------- */
footer {
  background-color: #101010;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-contact p,
.footer-legal p,
.footer-disclaimer p {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.footer-contact a {
  color: var(--primary);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: underline;
  margin: 0 4px;
}

.footer-disclaimer {
  grid-column: span 2;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-disclaimer {
    margin-top: 30px;
  }
}
