:root {
  --brand-primary:     #FFC107;
  --brand-secondary:   #1A1A1A;
  --brand-accent:      #E53935;
  --brand-bg:          #121212;
  --brand-text:        #FFFFFF;
  --brand-header-bg:   #1A1A1A;
  --brand-btn-bg:      #FFC107;
  --brand-btn-text:    #000000;
  --brand-btn-radius:  4px;
  --brand-head-font:   'Arial', sans-serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
}

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

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

body {
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  background: var(--brand-bg);
  color: var(--brand-text);
  line-height: 1.6;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

a { color: var(--brand-primary); text-decoration: none; transition: color .2s; }
a:hover { color: #ffd54f; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== SKIP TO CONTENT ===== */
.skip-link {
  position: absolute;
  top: -100px;
  right: 0;
  background: var(--brand-primary);
  color: #000;
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 700;
  border-radius: 0 0 4px 4px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ===== UTILITY BAR ===== */
.utility-bar {
  background: #0d0d0d;
  padding: 6px 0;
  font-size: 12px;
  border-bottom: 1px solid #2a2a2a;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.utility-bar-right { display: flex; align-items: center; gap: 10px; }
.utility-bar-left  { display: flex; align-items: center; gap: 10px; font-size: 11px; color: #aaa; }
.utility-btn {
  background: var(--brand-primary);
  color: #000;
  border: none;
  border-radius: var(--brand-btn-radius);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
  font-family: var(--brand-body-font);
}
.utility-btn:hover { background: #ffd54f; transform: translateY(-1px); color: #000; }
.utility-btn.outline {
  background: transparent;
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
}
.utility-btn.outline:hover { background: var(--brand-primary); color: #000; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--brand-header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}
.site-logo-img { height: 44px; width: auto; display: block; max-width: 200px; }
.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.main-nav ul li a {
  color: var(--brand-text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--brand-btn-radius);
  display: block;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li a.active { background: var(--brand-primary); color: #000; }

.sub-nav {
  background: #161616;
  border-top: 1px solid #2a2a2a;
  padding: 6px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.sub-nav::-webkit-scrollbar { display: none; }
.sub-nav ul {
  display: flex;
  gap: 4px;
  padding: 0 20px;
  white-space: nowrap;
  align-items: center;
}
.sub-nav ul li a {
  color: #ccc;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #333;
  transition: all .2s;
  display: block;
}
.sub-nav ul li a:hover,
.sub-nav ul li a.active {
  background: var(--brand-primary);
  color: #000;
  border-color: var(--brand-primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--brand-text);
  font-size: 26px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color .2s;
}
.mobile-menu-btn:hover { color: var(--brand-primary); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 75vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #1f1200 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(255,193,7,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(229,57,53,.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,193,7,.03) 0px, rgba(255,193,7,.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(255,193,7,.02) 0px, rgba(255,193,7,.02) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content { order: 2; }
.hero-visual  { order: 1; }
.hero-badge {
  display: inline-block;
  background: var(--brand-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hero h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.2;
  color: var(--brand-text);
  margin-bottom: 12px;
}
.hero h1 span { color: var(--brand-primary); }
.hero-subtitle {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 500px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-number {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: .5px; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual-card {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  position: relative;
  overflow: hidden;
}
.hero-visual-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 3px;
  background: var(--brand-primary);
}
.hero-game-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.hero-game-thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #333;
}
.hero-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.hero-game-thumb:hover img { transform: scale(1.05); }
.game-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.hero-game-thumb:hover .game-thumb-overlay { opacity: 1; }
.game-thumb-overlay span {
  background: var(--brand-primary);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
}
.hero-bonus-badge {
  background: rgba(255,193,7,.1);
  border: 1px solid rgba(255,193,7,.3);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
}
.hero-bonus-badge .amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-primary);
  display: block;
}
.hero-bonus-badge .label { font-size: 11px; color: #aaa; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--brand-body-font);
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-align: center;
  white-space: nowrap;
}
.btn:focus { outline: 3px solid var(--brand-primary); outline-offset: 2px; }
.btn-hero {
  background: var(--brand-primary);
  color: #000;
  font-size: 16px;
  padding: 14px 36px;
  box-shadow: 0 4px 20px rgba(255,193,7,.35);
}
.btn-hero:hover {
  background: #ffd54f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,193,7,.5);
  color: #000;
}
.btn-cta {
  background: var(--brand-accent);
  color: #fff;
}
.btn-cta:hover {
  background: #c62828;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229,57,53,.4);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.btn-outline:hover {
  background: var(--brand-primary);
  color: #000;
  transform: translateY(-2px);
}
.btn-dark {
  background: #2a2a2a;
  color: var(--brand-text);
  border: 1px solid #444;
}
.btn-dark:hover { background: #333; color: var(--brand-primary); }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-primary);
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,193,7,.45);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  font-family: var(--brand-body-font);
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,193,7,.6);
  color: #000;
}

/* ===== SECTION COMMON ===== */
.section { padding: 60px 0; }
.section-alt { background: #161616; }
.section-dark { background: #0e0e0e; }
.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(20px, 3vw, 30px);
  color: var(--brand-text);
  margin-bottom: 8px;
}
.section-title span { color: var(--brand-primary); }
.section-subtitle {
  color: #888;
  font-size: 14px;
  margin-bottom: 36px;
  max-width: 600px;
}
.section-header { margin-bottom: 36px; }
.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* ===== BONUS SECTION — FULL WIDTH ===== */
.bonus-section {
  background: linear-gradient(135deg, #1a0f00 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.bonus-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,193,7,.06) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}
.bonus-main-card {
  background: linear-gradient(145deg, #1e1e1e, #252525);
  border-radius: 12px;
  padding: 36px;
  border-top: 3px solid var(--brand-primary);
  position: relative;
  overflow: hidden;
}
.bonus-main-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,193,7,.05) 0%, transparent 70%);
}
.bonus-amount {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.bonus-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--brand-text);
}
.bonus-desc {
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.bonus-terms {
  font-size: 11px;
  color: #666;
  margin-top: 16px;
}
.bonus-side-cards { display: flex; flex-direction: column; gap: 16px; }
.bonus-side-card {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 20px;
  border-right: 3px solid var(--brand-accent);
  transition: transform .2s, border-color .2s;
}
.bonus-side-card:hover { transform: translateX(-4px); border-color: var(--brand-primary); }
.bonus-side-card .card-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.bonus-side-card .card-value { font-size: 18px; font-weight: 700; color: var(--brand-primary); margin-bottom: 4px; }
.bonus-side-card .card-desc { font-size: 12px; color: #aaa; }

/* ===== GAMES SECTION — 4-COLUMN GRID ===== */
.games-section { padding: 60px 0; }
.games-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #333;
  background: transparent;
  color: #ccc;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--brand-body-font);
  transition: all .2s;
  white-space: nowrap;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--brand-primary);
  color: #000;
  border-color: var(--brand-primary);
  font-weight: 700;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.game-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  position: relative;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.game-card-thumb {
  aspect-ratio: 4/3;
  background: #2a2a2a;
  position: relative;
  overflow: hidden;
}
.game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.game-card:hover .game-card-thumb img { transform: scale(1.08); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-live-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--brand-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
}
.game-hot-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--brand-primary);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
}
.game-card-info {
  padding: 12px;
}
.game-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text);
  margin-bottom: 3px;
}
.game-card-provider {
  font-size: 11px;
  color: #666;
}
.game-card-rtp {
  font-size: 11px;
  color: var(--brand-primary);
  font-weight: 600;
  margin-top: 4px;
}

/* ===== PAYMENTS SECTION — 3 COLUMN ===== */
.payments-section {
  background: #161616;
  padding: 60px 0;
}
.payments-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.payment-category-card {
  background: #1e1e1e;
  border-radius: 10px;
  padding: 28px;
  transition: transform .2s;
}
.payment-category-card:hover { transform: translateY(-3px); }
.payment-cat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,193,7,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.payment-cat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 8px;
}
.payment-cat-desc { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 16px; }
.payment-methods-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.payment-tag {
  background: #2a2a2a;
  color: #ccc;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #333;
}
.payment-detail { font-size: 13px; color: var(--brand-primary); font-weight: 600; margin-top: 8px; }

/* ===== LIVE CASINO — ASYMMETRIC 2/3 + 1/3 ===== */
.live-section { padding: 60px 0; }
.live-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}
.live-feature-card {
  background: linear-gradient(145deg, #1a1a1a, #222);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.live-feature-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a0f00, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.live-feature-content { padding: 28px; }
.live-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 12px;
}
.live-feature-desc { font-size: 14px; color: #aaa; line-height: 1.7; margin-bottom: 20px; }
.live-sidebar { display: flex; flex-direction: column; gap: 14px; }
.live-sidebar-card {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background .2s, transform .2s;
  cursor: pointer;
}
.live-sidebar-card:hover { background: #252525; transform: translateX(-4px); }
.live-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255,193,7,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.live-card-text {}
.live-card-name { font-size: 13px; font-weight: 600; color: var(--brand-text); margin-bottom: 3px; }
.live-card-players { font-size: 11px; color: #888; }
.live-card-badge {
  margin-right: auto;
  background: var(--brand-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
}

/* ===== SPORTS — FULL WIDTH + CARDS ===== */
.sports-section {
  background: #0e0e0e;
  padding: 60px 0;
}
.sports-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.sport-cat-card {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: transform .2s, background .2s;
  border-bottom: 2px solid transparent;
}
.sport-cat-card:hover, .sport-cat-card.active {
  transform: translateY(-4px);
  background: #1e1e1e;
  border-bottom-color: var(--brand-primary);
}
.sport-icon { font-size: 32px; margin-bottom: 10px; }
.sport-name { font-size: 13px; font-weight: 600; color: var(--brand-text); margin-bottom: 4px; }
.sport-count { font-size: 11px; color: #888; }
.sports-highlight {
  background: linear-gradient(135deg, #1a1a1a, #1e1e1e);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-right: 4px solid var(--brand-primary);
}
.sports-highlight-text {}
.sports-highlight-title { font-size: 18px; font-weight: 700; color: var(--brand-text); margin-bottom: 8px; }
.sports-highlight-desc { font-size: 13px; color: #aaa; max-width: 500px; line-height: 1.6; }

/* ===== WHY US — 3 COLUMN ICONS ===== */
.features-section { padding: 60px 0; background: #161616; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transition: transform .3s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,193,7,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
  transition: background .2s;
}
.feature-card:hover .feature-icon { background: rgba(255,193,7,.2); }
.feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 10px;
}
.feature-desc { font-size: 13px; color: #888; line-height: 1.65; }

/* ===== APP SECTION — ASYMMETRIC ===== */
.app-section { padding: 60px 0; }
.app-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}
.app-visual {
  background: linear-gradient(145deg, #1e1e1e, #252525);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}
.app-phone-icon { font-size: 72px; margin-bottom: 16px; }
.app-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.app-badge {
  background: #2a2a2a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 12px;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-badge span { font-size: 18px; }
.app-content {}
.app-content .section-title { margin-bottom: 14px; }
.app-content p { font-size: 14px; color: #aaa; line-height: 1.7; margin-bottom: 16px; }
.app-features-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.app-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #ccc;
  line-height: 1.5;
}
.app-feature-check {
  color: var(--brand-primary);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== SUPPORT SECTION — 2 COLUMN ===== */
.support-section {
  background: #0e0e0e;
  padding: 60px 0;
}
.support-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.support-info {}
.support-info .section-title { margin-bottom: 14px; }
.support-info p { font-size: 14px; color: #aaa; line-height: 1.7; margin-bottom: 20px; }
.support-channels { display: flex; flex-direction: column; gap: 12px; }
.support-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #1a1a1a;
  border-radius: 8px;
  padding: 16px;
  transition: background .2s;
}
.support-channel:hover { background: #1e1e1e; }
.support-channel-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,193,7,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.support-channel-info {}
.support-channel-name { font-size: 13px; font-weight: 600; color: var(--brand-text); margin-bottom: 2px; }
.support-channel-detail { font-size: 12px; color: #888; }
.support-faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
}
.faq-question {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background .2s;
  user-select: none;
}
.faq-question:hover { background: #222; }
.faq-question .arrow { color: var(--brand-primary); font-size: 12px; flex-shrink: 0; }
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 13px;
  color: #888;
  line-height: 1.65;
}

/* ===== RESPONSIBLE GAMING ===== */
.responsible-section {
  background: #161616;
  padding: 50px 0;
}
.responsible-inner {
  background: linear-gradient(135deg, #1a1a1a, #1e1e1e);
  border-radius: 12px;
  padding: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  border-right: 4px solid var(--brand-accent);
}
.responsible-icon { font-size: 56px; }
.responsible-content {}
.responsible-title { font-size: 18px; font-weight: 700; color: var(--brand-text); margin-bottom: 10px; }
.responsible-desc { font-size: 13px; color: #aaa; line-height: 1.7; margin-bottom: 16px; }
.responsible-links { display: flex; gap: 12px; flex-wrap: wrap; }
.responsible-link {
  font-size: 12px;
  color: var(--brand-primary);
  border: 1px solid rgba(255,193,7,.3);
  padding: 5px 14px;
  border-radius: 4px;
  transition: all .2s;
}
.responsible-link:hover { background: var(--brand-primary); color: #000; }

/* ===== CONTENT / SEO TEXT ===== */
.content-section { padding: 60px 0; }
.content-body {
  max-width: 860px;
}
.content-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-text);
  margin: 32px 0 12px;
  padding-right: 0;
}
.content-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-primary);
  margin: 24px 0 10px;
}
.content-body p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.75;
  margin-bottom: 14px;
}
.content-body strong { color: var(--brand-text); }

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0a0a;
  padding-top: 50px;
  border-top: 1px solid #1e1e1e;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {}
.footer-brand .site-logo-img { margin-bottom: 16px; }
.footer-brand-desc { font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 16px; max-width: 280px; }
.footer-brand-cta { margin-top: 12px; }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: #666;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--brand-primary); }
.footer-security {
  border-top: 1px solid #1e1e1e;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.security-logos { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.security-badge {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}
.security-badge span { font-size: 16px; }
.security-badge.gold { color: var(--brand-primary); border-color: rgba(255,193,7,.3); }
.age-badge {
  background: var(--brand-accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-legal {
  background: #060606;
  padding: 20px 0;
  border-top: 1px solid #1a1a1a;
}
.footer-legal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 12px; color: #555; transition: color .2s; }
.footer-legal-links a:hover { color: var(--brand-primary); }
.footer-copyright { font-size: 12px; color: #444; }
.footer-disclaimer { font-size: 11px; color: #444; line-height: 1.6; margin-top: 8px; max-width: 700px; }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 60px 0 80px; }
.legal-content { max-width: 860px; }
.legal-content h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 8px;
}
.legal-content .last-updated { font-size: 13px; color: #666; margin-bottom: 32px; }
.legal-content h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-text);
  margin: 32px 0 12px;
}
.legal-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-primary);
  margin: 20px 0 8px;
}
.legal-content p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  padding-right: 20px;
  margin-bottom: 14px;
}
.legal-content ul li, .legal-content ol li {
  list-style: disc;
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-content ol li { list-style: decimal; }
.legal-content strong { color: var(--brand-text); }

/* ===== DIVIDER ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(to left, transparent, #2a2a2a 30%, #2a2a2a 70%, transparent);
  margin: 0;
}

/* ===== SCROLL FADE ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== HERO IMAGE PLACEHOLDER ===== */
.hero-img-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #1a0f00, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

/* ===== GAME PLACEHOLDER ===== */
.game-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  min-height: 100px;
}

/* ===== VISIBILITY FIX ===== */
#main-content,
#main-content > *,
#main-content section,
#main-content .container,
#main-content .bonus-section,
#main-content .games-section,
#main-content .live-section,
#main-content .payments-section,
#main-content .sports-section,
#main-content .features-section,
#main-content .app-section,
#main-content .support-section,
#main-content .content-section {
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}

#main-content .bonus-grid,
#main-content .games-grid,
#main-content .live-layout,
#main-content .payments-layout,
#main-content .sports-categories,
#main-content .features-grid,
#main-content .app-layout,
#main-content .support-layout {
  display: grid !important;
}

#main-content .bonus-side-cards,
#main-content .live-sidebar,
#main-content .app-features-list,
#main-content .support-channels,
#main-content .support-faq {
  display: flex !important;
}

#main-content .fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 992px) {
  .main-nav ul { display: none; }
  .mobile-menu-btn { display: block; }
  .main-nav { position: relative; }
  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 16px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.5);
    z-index: 100;
  }
  .mobile-nav-active ul li a { padding: 12px 16px; border-radius: 4px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { order: 1; }
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-side-cards { flex-direction: row; }
  .bonus-side-card { flex: 1; }
  .live-layout { grid-template-columns: 1fr; }
  .app-layout { grid-template-columns: 1fr; }
  .app-visual { max-width: 340px; }
  .support-layout { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .sports-categories { grid-template-columns: repeat(2, 1fr); }
  .responsible-inner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { min-height: 60vh; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .payments-layout { grid-template-columns: 1fr; }
  .footer-security { flex-direction: column; align-items: flex-start; }
  .footer-legal-inner { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .utility-bar .utility-bar-left { display: none; }
  .bonus-side-cards { flex-direction: column; }
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 13px; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-categories { grid-template-columns: 1fr 1fr; }
  .hero-cta-group { flex-direction: column; }
  .btn-hero { width: 100%; text-align: center; }
  .footer-main { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .games-filter { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
  .games-filter::-webkit-scrollbar { display: none; }
}