:root {
  --brand-primary:     #1a0a2e;
  --brand-secondary:   #f5a623;
  --brand-accent:      #c850c0;
  --brand-bg:          #0d0517;
  --brand-text:        #ffffff;
  --brand-header-bg:   #1a0a2e;
  --brand-btn-bg:      #f5a623;
  --brand-btn-text:    #1a0a2e;
  --brand-btn-radius:  12px;
  --brand-head-font:   'Arial Black', sans-serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 900;
  --brand-body-size:   14px;
}

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

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

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

a {
  color: var(--brand-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--brand-accent);
}

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-to-content {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--brand-secondary);
  color: var(--brand-btn-text);
  padding: 10px 20px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 10px;
}

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 2px solid rgba(245, 166, 35, 0.25);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: relative;
}

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

.main-nav {
  position: relative;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav ul li a {
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  display: block;
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(245, 166, 35, 0.15);
  color: var(--brand-secondary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 2px solid var(--brand-secondary);
  color: var(--brand-secondary);
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.mobile-menu-btn:hover {
  background: rgba(245, 166, 35, 0.15);
}

.mobile-menu-btn:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

.btn:focus {
  outline: 3px solid var(--brand-accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 18px rgba(245, 166, 35, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.55);
  color: var(--brand-btn-text);
}

.btn-hero {
  background: linear-gradient(135deg, #f5a623 0%, #e8870c 100%);
  color: var(--brand-btn-text);
  font-size: 18px;
  padding: 16px 40px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 6px 30px rgba(245, 166, 35, 0.5);
  font-family: var(--brand-head-font);
  font-weight: 900;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(245, 166, 35, 0.65);
  color: var(--brand-btn-text);
}

.btn-cta {
  background: linear-gradient(135deg, #c850c0 0%, #9a30a0 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(200, 80, 192, 0.4);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 80, 192, 0.55);
  color: #ffffff;
}

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

.btn-outline:hover {
  background: var(--brand-secondary);
  color: var(--brand-btn-text);
}

/* ===================== FLOATING CTA ===================== */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, #f5a623 0%, #e8870c 100%);
  color: var(--brand-btn-text);
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: var(--brand-head-font);
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.65);
  color: var(--brand-btn-text);
}

.floating-cta:focus {
  outline: 3px solid var(--brand-accent);
  outline-offset: 2px;
}

/* ===================== HERO ===================== */
.hero-section {
  position: relative;
  min-height: 82vh;
  background: linear-gradient(135deg, #1a0a2e 0%, #0d0517 40%, #1a0030 70%, #0a0020 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-cityscape {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 60%, rgba(200, 80, 192, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(245, 166, 35, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(100, 20, 150, 0.4) 0%, transparent 70%);
  z-index: 0;
}

.hero-glow-left {
  position: absolute;
  left: -100px;
  top: 20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 80, 192, 0.25) 0%, transparent 70%);
  z-index: 0;
  filter: blur(40px);
}

.hero-glow-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  z-index: 0;
  filter: blur(50px);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 166, 35, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  padding-right: 20px;
}

.hero-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, rgba(200, 80, 192, 0.3), rgba(245, 166, 35, 0.3));
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-secondary);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 0 40px rgba(200, 80, 192, 0.4);
}

.hero-title span {
  background: linear-gradient(135deg, #f5a623, #c850c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 480px;
}

.hero-badges {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.hero-badge .badge-icon {
  font-size: 16px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hero-card-stack {
  position: relative;
  width: 340px;
  height: 340px;
}

.hero-card-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 24px;
  background: linear-gradient(135deg, #2a1048 0%, #1a0a2e 100%);
  border: 1px solid rgba(245, 166, 35, 0.3);
  box-shadow:
    0 0 60px rgba(200, 80, 192, 0.3),
    0 0 120px rgba(245, 166, 35, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.hero-card-main .card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.hero-card-main .card-amount {
  font-family: var(--brand-head-font);
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5a623, #c850c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-card-main .card-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-floating-chip {
  position: absolute;
  border-radius: 14px;
  background: linear-gradient(135deg, #2a1048, #1a0a2e);
  border: 1px solid rgba(200, 80, 192, 0.4);
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.chip-top-right {
  top: 10px;
  right: 0;
  color: #f5a623;
}

.chip-bottom-left {
  bottom: 10px;
  left: 0;
  color: #c850c0;
}

.chip-mid-right {
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8);
}

/* ===================== SECTION COMMON ===================== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.section-dark {
  background: var(--brand-primary);
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-title span {
  background: linear-gradient(135deg, #f5a623, #c850c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-intro {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-secondary);
  margin-bottom: 12px;
}

/* ===================== BONUS SECTION (2-col asymmetric) ===================== */
.bonus-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.bonus-main-card {
  background: linear-gradient(135deg, #2a1048 0%, #1a0a2e 60%, #200a3a 100%);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.bonus-main-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 80, 192, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #f5a623, #ffd080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.bonus-title {
  font-family: var(--brand-head-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.bonus-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}

.bonus-terms-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
}

.bonus-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-mini-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.2s, background 0.2s;
}

.bonus-mini-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  background: rgba(245, 166, 35, 0.05);
}

.bonus-mini-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.bonus-mini-title {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 6px;
}

.bonus-mini-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ===================== GAMES SECTION (3-col grid) ===================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.game-card {
  background: linear-gradient(160deg, #2a1048 0%, #1a0a2e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200, 80, 192, 0.25);
  border-color: rgba(200, 80, 192, 0.4);
}

.game-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, #3a1060 0%, #1a0535 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}

.game-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 5, 23, 0.6) 0%, transparent 60%);
}

.game-card-body {
  padding: 18px 20px;
}

.game-card-provider {
  font-size: 11px;
  color: var(--brand-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.game-card-name {
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.game-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-rtp {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.game-rtp span {
  color: #f5a623;
  font-weight: 700;
}

.game-tag {
  font-size: 11px;
  background: rgba(200, 80, 192, 0.2);
  color: var(--brand-accent);
  border-radius: 4px;
  padding: 2px 8px;
  font-weight: 700;
}

/* ===================== PAYMENTS SECTION (full-width + 4-col) ===================== */
.payments-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
}

.payments-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.payment-method-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.payment-method-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  background: rgba(245, 166, 35, 0.04);
}

.payment-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.payment-name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.payment-speed {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.payments-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 32px;
}

.payment-info-item {
  text-align: center;
}

.payment-info-value {
  font-family: var(--brand-head-font);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-secondary);
  margin-bottom: 6px;
  line-height: 1;
}

.payment-info-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===================== TRUST / SECURITY (side-by-side) ===================== */
.trust-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-text-col {}

.trust-text-col p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 20px;
}

.trust-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.trust-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(200, 80, 192, 0.2), rgba(245, 166, 35, 0.2));
  border: 1px solid rgba(245, 166, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.trust-feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.trust-feature-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.trust-visual-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-stat-card {
  background: linear-gradient(135deg, #2a1048 0%, #1a0a2e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.trust-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 80, 192, 0.2);
}

.trust-stat-card:nth-child(1) {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #2a0a48 0%, #1a0030 100%);
  border-color: rgba(245, 166, 35, 0.25);
}

.trust-stat-value {
  font-family: var(--brand-head-font);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5a623, #c850c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===================== LIVE CASINO (full-width alternating) ===================== */
.live-casino-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}

.live-casino-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 18px;
}

.live-tables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.live-table-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.live-table-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 80, 192, 0.4);
}

.live-table-thumb {
  height: 100px;
  background: linear-gradient(135deg, #300a50 0%, #1a0535 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.live-table-info {
  padding: 12px 14px;
}

.live-table-name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.live-table-status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.live-table-status .dot-live {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #4cff91;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

/* ===================== SUPPORT SECTION ===================== */
.support-banner {
  background: linear-gradient(135deg, #2a1048 0%, #1a0a2e 50%, #200a3a 100%);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 24px;
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.support-text h2 {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #ffffff;
  margin-bottom: 12px;
}

.support-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  line-height: 1.7;
}

.support-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

.support-channel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.support-channel-item .ch-icon {
  font-size: 18px;
}

/* ===================== FAQ SECTION ===================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(245, 166, 35, 0.08);
}

.faq-question:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: -2px;
}

.faq-chevron {
  font-size: 12px;
  color: var(--brand-secondary);
  transition: transform 0.2s;
  flex-shrink: 0;
}

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

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

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

/* ===================== MID-PAGE CTA ===================== */
.midpage-cta {
  text-align: center;
  padding: 64px 20px;
  background: linear-gradient(135deg, rgba(200, 80, 192, 0.1) 0%, rgba(245, 166, 35, 0.08) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.midpage-cta h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
}

.midpage-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--brand-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 60px;
  padding-bottom: 0;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand-col {}

.footer-logo-area {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col-title {
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand-secondary);
}

.footer-responsible {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 32px 0;
}

.footer-rg-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-rg-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: border-color 0.2s;
}

.footer-rg-badge:hover {
  border-color: rgba(245, 166, 35, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.footer-rg-badge .rg-icon {
  font-size: 20px;
}

.footer-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #cc0000;
  color: #ffffff;
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 900;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
}

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

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--brand-secondary);
}

/* ===================== LEGAL PAGES ===================== */
.legal-page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.legal-page-wrap h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
}

.legal-last-updated {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
}

.legal-page-wrap h2 {
  font-family: var(--brand-head-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-top: 36px;
  margin-bottom: 14px;
}

.legal-page-wrap p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-page-wrap ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page-wrap ul li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ===================== DIVIDER ===================== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.2), rgba(200, 80, 192, 0.2), transparent);
  margin: 0;
}

/* ===================== MOBILE RESPONSIVE ===================== */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 2px solid var(--brand-secondary);
  color: var(--brand-secondary);
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
  padding: 0;
}

@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(245, 166, 35, 0.2);
    gap: 4px;
    z-index: 999;
  }

  .hero-content-wrap {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  .hero-section {
    min-height: auto;
  }

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

  .bonus-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .bonus-mini-card {
    flex: 1;
    min-width: 180px;
  }

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

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

  .payments-info-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .payments-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .trust-stat-card:nth-child(1) {
    grid-column: 1 / -1;
  }

  .live-casino-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .support-banner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 28px;
  }

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

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

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .hero-text {
    padding-right: 0;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .hero-badges {
    gap: 10px;
  }

  .bonus-main-card {
    padding: 32px 24px;
  }

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

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

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    font-size: 13px;
    padding: 12px 22px;
  }
}

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

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

  .live-tables-grid {
    grid-template-columns: 1fr;
  }

  .trust-visual-col {
    grid-template-columns: 1fr;
  }

  .trust-stat-card:nth-child(1) {
    grid-column: 1;
  }

  .bonus-main-card {
    padding: 24px 20px;
  }

  .support-banner {
    padding: 32px 20px;
  }

  .footer-rg-inner {
    gap: 12px;
  }
}