/* ===========================
   ADMIRAL CASINO UK
   Brand Palette:
   --red:       #C8102E  (Admiral Red)
   --gold:      #FFD700  (Admiral Gold)
   --dark:      #0D0D1A  (Deep Navy)
   --dark-mid:  #16162A  (Section Dark)
   --light:     #F5F2EA  (Cream White)
   --light-mid: #FFFFFF
   --text:      #1A1A2E
   --text-light:#F0EDE5
   Font: Georgia (display), Arial/system (body)
=========================== */

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

:root {
  --red: #C8102E;
  --red-dark: #9e0c24;
  --gold: #FFD700;
  --gold-dark: #c9a900;
  --dark: #0D0D1A;
  --dark-mid: #16162A;
  --dark-card: #1e1e38;
  --light: #F5F2EA;
  --light-mid: #ffffff;
  --text: #1A1A2E;
  --text-muted: #555570;
  --text-light: #F0EDE5;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: Arial, 'Helvetica Neue', sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.7;
}

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

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   TOP BONUS BANNER
=========================== */

.top-bonus-banner {
  background: linear-gradient(90deg, var(--red) 0%, #8B0000 50%, var(--red) 100%);
  border-bottom: 3px solid var(--gold);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.banner-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.banner-deal {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.banner-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
}

/* ===========================
   BUTTONS
=========================== */

.btn-cta {
  display: inline-block;
  padding: 12px 28px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
  text-transform: uppercase;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #f5c400 100%);
  color: var(--dark);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffe033 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-header {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ===========================
   HEADER
=========================== */

.site-header {
  background: var(--dark);
  border-bottom: 2px solid var(--red);
  padding: 14px 0;
  position: sticky;
  top: 57px;
  z-index: 900;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-wrap {
  display: block;
  flex-shrink: 0;
}

.logo-svg {
  height: 52px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.15s;
}

.main-nav a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* ===========================
   HERO
=========================== */

.hero {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-mid) 50%, #1a0a0e 100%);
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-rating-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 50px;
  padding: 8px 24px;
  margin-bottom: 24px;
  gap: 2px;
}

.star-row {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.rating-num {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.rating-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(200,16,46,0.6);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.hero-intro {
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}

.hero-cta-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,215,0,0.15);
  padding-top: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ===========================
   QUICK FACTS
=========================== */

.quick-facts {
  background: var(--red);
  padding: 48px 0;
}

.quick-facts h2 {
  text-align: center;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.6rem;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.fact-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.fact-card:hover {
  background: rgba(255,255,255,0.18);
}

.fact-icon {
  font-size: 1.8rem;
}

.fact-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.fact-value {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ===========================
   SECTION STYLES
=========================== */

.section-light {
  padding: 72px 0;
  background: var(--light);
}

.section-dark {
  padding: 72px 0;
  background: var(--dark-mid);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li {
  color: var(--text-light);
}

.section-dark h2 {
  color: var(--gold);
}

.section-dark h3 {
  color: #fff;
}

.section-light h2 {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.section-dark h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.section-intro {
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 740px;
  opacity: 0.85;
}

/* ===========================
   TWO COLUMN LAYOUT
=========================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.col-text p {
  margin-bottom: 18px;
  line-height: 1.8;
}

.aside-box {
  background: var(--dark);
  color: var(--text-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(200,16,46,0.3);
}

.aside-box h3 {
  font-family: Georgia, serif;
  color: var(--gold) !important;
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,215,0,0.2);
}

/* ===========================
   VERDICT LIST
=========================== */

.verdict-list li {
  padding: 6px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1.5;
}

.verdict-list li.pro {
  color: #6ee87a;
}

.verdict-list li.con {
  color: #ff8080;
}

/* ===========================
   BONUS CARDS
=========================== */

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.bonus-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(200,16,46,0.25);
}

.bonus-featured {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(255,215,0,0.12);
}

.bonus-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.bonus-card h3 {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: #fff;
  margin-top: 8px;
}

.bonus-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.bonus-card p {
  font-size: 0.9rem;
  color: rgba(240,237,229,0.8);
  line-height: 1.65;
}

.bonus-terms {
  margin-top: 4px;
}

.bonus-terms li {
  font-size: 0.82rem;
  color: rgba(240,237,229,0.6);
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bonus-terms li::before {
  content: '› ';
  color: var(--gold);
}

.bonus-card .btn-cta {
  margin-top: auto;
}

.bonus-insight {
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.15);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 28px 28px;
}

.bonus-insight h3 {
  font-family: Georgia, serif;
  color: var(--gold) !important;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.bonus-insight p {
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-light) !important;
  line-height: 1.75;
}

/* ===========================
   MID BANNER
=========================== */

.mid-banner {
  background: linear-gradient(90deg, #7a0a1a 0%, var(--red) 50%, #7a0a1a 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 20px;
}

.mid-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.mid-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mid-banner-text strong {
  font-size: 1.1rem;
  color: #fff;
  font-family: Georgia, serif;
}

.mid-banner-text span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}

/* ===========================
   GAMES GRID
=========================== */

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.game-category {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(255,215,0,0.12);
  transition: border-color 0.2s, transform 0.2s;
}

.game-category:hover {
  border-color: rgba(255,215,0,0.4);
  transform: translateY(-2px);
}

.game-cat-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.game-cat-icon svg {
  width: 100%;
  height: 100%;
}

.game-category h3 {
  font-family: Georgia, serif;
  color: var(--gold) !important;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.game-category p {
  font-size: 0.88rem;
  color: rgba(240,237,229,0.78);
  line-height: 1.7;
}

.providers-section h3 {
  font-family: Georgia, serif;
  color: var(--gold) !important;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.providers-section p {
  color: rgba(240,237,229,0.8);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.provider-tag {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===========================
   PAYMENTS TABLE
=========================== */

.payments-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.payments-two-col h3 {
  font-family: Georgia, serif;
  color: var(--gold) !important;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
}

.payments-table,
.comparison-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.payments-table th,
.comparison-table th {
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.payments-table td,
.comparison-table td {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--text-light);
}

.payments-table tr:nth-child(even) td,
.comparison-table tr:nth-child(even) td {
  background: rgba(255,255,255,0.03);
}

.comparison-table td.highlight {
  color: var(--gold);
  font-weight: 600;
}

.payment-notes h3 {
  font-family: Georgia, serif;
  color: var(--gold) !important;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.payment-notes p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(240,237,229,0.85);
}

/* ===========================
   MOBILE STATS
=========================== */

.mobile-stats {
  background: var(--dark) !important;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.stat-label {
  width: 160px;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: rgba(240,237,229,0.75);
}

.stat-bar {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.stat-pct {
  width: 36px;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 700;
  text-align: right;
}

/* ===========================
   SUPPORT
=========================== */

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.support-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(255,215,0,0.12);
}

.support-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.support-icon svg {
  width: 100%;
  height: 100%;
}

.support-card h3 {
  font-family: Georgia, serif;
  color: var(--gold) !important;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.support-card p {
  font-size: 0.88rem;
  color: rgba(240,237,229,0.78);
  line-height: 1.7;
}

/* ===========================
   RESPONSIBLE GAMBLING
=========================== */

.rg-box {
  background: var(--dark) !important;
}

.rg-list li {
  padding: 5px 0;
  font-size: 0.9rem;
  color: #7ee87a !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rg-note {
  margin-top: 16px;
  font-size: 0.82rem !important;
  color: rgba(240,237,229,0.65) !important;
  line-height: 1.6 !important;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 14px;
}

/* ===========================
   SECURITY
=========================== */

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.security-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 28px 22px;
  border-top: 3px solid var(--red);
}

.security-card h3 {
  font-family: Georgia, serif;
  color: var(--gold) !important;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.security-card p {
  font-size: 0.88rem;
  color: rgba(240,237,229,0.78);
  line-height: 1.7;
}

/* ===========================
   COMPARISON TABLE
=========================== */

.comparison-table {
  min-width: 480px;
}

/* ===========================
   FAQ
=========================== */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--dark-card);
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 0.97rem;
  color: #fff;
  text-align: left;
  transition: background 0.15s;
}

.faq-question:hover {
  background: rgba(200,16,46,0.15);
}

.faq-item.open .faq-question {
  background: rgba(200,16,46,0.2);
  color: var(--gold);
}

.faq-arrow {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.8rem;
  transition: transform 0.25s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  background: var(--dark);
  padding: 20px 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.92rem;
  color: rgba(240,237,229,0.82);
  line-height: 1.75;
}

/* ===========================
   FINAL SECTION
=========================== */

.final-section {
  background: var(--dark);
  padding: 72px 0;
  text-align: center;
}

.final-section h2 {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 24px;
}

.final-section p {
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 18px;
  font-size: 1rem;
  line-height: 1.8;
}

.final-cta {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.disclaimer-note {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.4) !important;
  max-width: 560px !important;
}

/* ===========================
   FOOTER
=========================== */

.site-footer {
  background: var(--dark);
  border-top: 2px solid var(--red);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 42px;
  width: auto;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

.footer-col h4 {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a,
.footer-col ul li span {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.15s;
}

.footer-col ul li a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-col p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.65;
}

.age-badge {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
}

/* ===========================
   RESPONSIVE — TABLET
=========================== */

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .payments-two-col {
    grid-template-columns: 1fr;
  }

  .site-header {
    top: 53px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 0.8rem;
  }
}

/* ===========================
   RESPONSIVE — MOBILE
=========================== */

@media (max-width: 640px) {
  .top-bonus-banner {
    padding: 10px 16px;
  }

  .banner-deal {
    font-size: 0.9rem;
  }

  .banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .site-header {
    position: static;
  }

  .top-bonus-banner {
    position: static;
  }

  .header-inner {
    flex-direction: column;
    gap: 12px;
  }

  .main-nav {
    justify-content: center;
    gap: 10px;
  }

  .btn-header {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 44px 0 44px;
  }

  .hero-intro {
    font-size: 0.95rem;
  }

  .trust-bar {
    gap: 16px;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .section-light,
  .section-dark {
    padding: 48px 0;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-cards {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mid-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .stat-label {
    width: 120px;
    font-size: 0.78rem;
  }

  .faq-question {
    font-size: 0.88rem;
    padding: 14px 16px;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .comparison-table,
  .payments-table {
    font-size: 0.82rem;
  }

  .comparison-table th,
  .payments-table th,
  .comparison-table td,
  .payments-table td {
    padding: 8px 10px;
  }
}

@media (max-width: 400px) {
  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
