/* ============================================================
   PRIVE CASINO — MAIN STYLESHEET
   Brand: Dark Luxury Casino | Deep Purple / Indigo / Yellow
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* --- CSS Variables --- */
:root {
  --brand-primary:     #1a0e2e;
  --brand-secondary:   #2d1b4e;
  --brand-accent:      #f5d623;
  --brand-bg:          #120a24;
  --brand-text:        #ffffff;
  --brand-header-bg:   #1a0e2e;
  --brand-btn-bg:      #f5d623;
  --brand-btn-text:    #1a0e2e;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size:   14px;
  --brand-card-bg:     #1e1035;
  --brand-border:      rgba(245, 214, 35, 0.15);
  --brand-muted:       rgba(255,255,255,0.6);
  --transition:        0.25s ease;
}

/* --- Reset & Base --- */
*, *::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;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #ffe066;
}

ul {
  list-style: none;
}

p {
  margin-bottom: 1rem;
  font-size: var(--brand-body-size);
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  color: var(--brand-text);
  line-height: 1.2;
}

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--brand-accent);
  color: var(--brand-btn-text);
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 4px;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 10px;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  background: var(--brand-header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

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

.logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Nav */
.main-nav {
  flex: 1;
}

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

.main-nav ul li a {
  color: rgba(255,255,255,0.85);
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(245,214,35,0.12);
  color: var(--brand-accent);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-header-login {
  background: transparent;
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--brand-btn-radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.btn-header-login:hover {
  background: var(--brand-accent);
  color: var(--brand-btn-text);
}

.btn-header-signup {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--brand-btn-radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.btn-header-signup:hover {
  background: #ffe066;
  transform: translateY(-1px);
  color: var(--brand-btn-text);
}

/* Mobile Burger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--brand-text);
  font-size: 24px;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  border-radius: 6px;
  transition: background var(--transition);
}

.mobile-menu-btn:hover {
  background: rgba(255,255,255,0.1);
}

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

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

.hero-section {
  background: linear-gradient(135deg, #120a24 0%, #1a0e2e 40%, #2d1b4e 70%, #1a0e2e 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(245,214,35,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 60%, rgba(120,60,255,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--brand-bg));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,214,35,0.12);
  border: 1px solid rgba(245,214,35,0.3);
  color: var(--brand-accent);
  font-family: var(--brand-head-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--brand-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--brand-text);
}

.hero-title .accent-text {
  color: var(--brand-accent);
}

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

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: var(--brand-btn-radius);
  display: inline-block;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 4px 24px rgba(245,214,35,0.3);
  white-space: nowrap;
}

.btn-hero:hover {
  background: #ffe066;
  color: var(--brand-btn-text);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245,214,35,0.45);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--brand-head-font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--brand-btn-radius);
  border: 2px solid rgba(255,255,255,0.2);
  display: inline-block;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  background: rgba(245,214,35,0.05);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--brand-body-font);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

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

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

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.hero-stat-card {
  background: rgba(45,27,78,0.6);
  border: 1px solid rgba(245,214,35,0.15);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero-stat-card .stat-number {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 2rem;
  color: var(--brand-accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-card .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-family: var(--brand-body-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   BUTTONS (General)
   ============================================================ */

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

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

.btn-primary:hover {
  background: #ffe066;
  color: var(--brand-btn-text);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,214,35,0.4);
}

.btn-secondary {
  background: var(--brand-secondary);
  color: var(--brand-text);
  border: 1px solid rgba(245,214,35,0.2);
}

.btn-secondary:hover {
  background: rgba(45,27,78,0.9);
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  font-size: 17px;
  font-weight: 800;
  padding: 18px 48px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 4px 24px rgba(245,214,35,0.35);
}

.btn-cta:hover {
  background: #ffe066;
  color: var(--brand-btn-text);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(245,214,35,0.5);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35), 0 0 0 0 rgba(245,214,35,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  animation: floatPulse 3s infinite;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  color: var(--brand-btn-text);
  background: #ffe066;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.35), 0 0 0 0 rgba(245,214,35,0.4); }
  50% { box-shadow: 0 4px 20px rgba(0,0,0,0.35), 0 0 0 8px rgba(245,214,35,0); }
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 56px 0;
}

.section-lg {
  padding: 100px 0;
}

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

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

.section-card {
  background: var(--brand-secondary);
}

.section-header {
  margin-bottom: 48px;
}

.section-header.centered {
  text-align: center;
}

.section-eyebrow {
  font-family: var(--brand-head-font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-accent);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--brand-text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.7;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* Accent divider */
.accent-divider {
  width: 48px;
  height: 3px;
  background: var(--brand-accent);
  border-radius: 2px;
  margin: 16px 0;
}

.centered .accent-divider {
  margin: 16px auto;
}

/* ============================================================
   BONUS SECTION
   ============================================================ */

.bonus-section {
  background: linear-gradient(135deg, #1a0e2e 0%, #2d1b4e 50%, #1a0e2e 100%);
  position: relative;
  overflow: hidden;
}

.bonus-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,214,35,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.bonus-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.bonus-card {
  background: rgba(18,10,36,0.7);
  border: 1px solid rgba(245,214,35,0.2);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-accent), #ff9f43);
}

.bonus-headline {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--brand-accent);
  display: block;
  margin-bottom: 8px;
}

.bonus-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}

.bonus-terms-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.bonus-terms-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.bonus-terms-list li .check-icon {
  color: var(--brand-accent);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

.bonus-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  line-height: 1.5;
}

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

.mini-bonus-card {
  background: rgba(45,27,78,0.5);
  border: 1px solid rgba(245,214,35,0.12);
  border-radius: 14px;
  padding: 20px;
  transition: border-color var(--transition), background var(--transition);
}

.mini-bonus-card:hover {
  border-color: rgba(245,214,35,0.3);
  background: rgba(45,27,78,0.7);
}

.mini-bonus-card .card-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.mini-bonus-card .card-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-text);
  margin-bottom: 4px;
}

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

/* ============================================================
   GAMES SECTION
   ============================================================ */

.games-section {
  background: var(--brand-bg);
}

.game-categories {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.game-cat-btn {
  background: rgba(45,27,78,0.5);
  border: 1px solid rgba(245,214,35,0.12);
  color: rgba(255,255,255,0.7);
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.game-cat-btn:hover,
.game-cat-btn.active {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: var(--brand-btn-text);
}

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

.game-card {
  background: var(--brand-card-bg);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.game-card-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2d1b4e, #1a0e2e);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.game-card-thumb .game-emoji {
  font-size: 48px;
  z-index: 2;
  position: relative;
}

.game-card-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(245,214,35,0.1), transparent 60%);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,10,36,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-card-info {
  padding: 14px 16px;
}

.game-card-title {
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-family: var(--brand-body-font);
}

.game-rtp-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(18,10,36,0.85);
  border: 1px solid rgba(245,214,35,0.3);
  color: var(--brand-accent);
  font-family: var(--brand-head-font);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.games-cta-center {
  text-align: center;
  margin-top: 16px;
}

/* ============================================================
   LIVE CASINO SECTION
   ============================================================ */

.live-casino-section {
  background: linear-gradient(180deg, var(--brand-bg) 0%, #1a0e2e 100%);
  position: relative;
  overflow: hidden;
}

.live-casino-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(120,60,255,0.08), transparent);
  pointer-events: none;
}

.live-casino-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,60,60,0.15);
  border: 1px solid rgba(255,60,60,0.3);
  color: #ff6b6b;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.live-badge .live-dot {
  width: 6px;
  height: 6px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.live-casino-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.live-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.live-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,214,35,0.1);
  border: 1px solid rgba(245,214,35,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.live-feature-text h4 {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 4px;
}

.live-feature-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}

.live-casino-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.live-table-card {
  background: var(--brand-card-bg);
  border: 1px solid rgba(245,214,35,0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.live-table-card:hover {
  border-color: rgba(245,214,35,0.3);
  transform: translateY(-3px);
}

.live-table-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2d1b4e, #1a0e2e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
}

.live-status-dot {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

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

.live-table-name {
  font-family: var(--brand-head-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 3px;
}

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

/* ============================================================
   SPORTS BETTING SECTION
   ============================================================ */

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

.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sport-card {
  background: rgba(18,10,36,0.6);
  border: 1px solid rgba(245,214,35,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.sport-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.sport-card:hover {
  border-color: rgba(245,214,35,0.25);
  background: rgba(45,27,78,0.5);
  transform: translateY(-4px);
}

.sport-card:hover::before {
  opacity: 1;
}

.sport-icon {
  font-size: 42px;
  display: block;
  margin-bottom: 14px;
}

.sport-title {
  font-family: var(--brand-head-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 8px;
}

.sport-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   PAYMENTS SECTION
   ============================================================ */

.payments-section {
  background: var(--brand-bg);
}

.payments-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.payments-intro h3 {
  font-family: var(--brand-head-font);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-text);
  margin-bottom: 12px;
}

.payments-intro p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

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

.payment-method-card {
  background: rgba(45,27,78,0.4);
  border: 1px solid rgba(245,214,35,0.1);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
}

.payment-method-card:hover {
  border-color: rgba(245,214,35,0.25);
  background: rgba(45,27,78,0.6);
}

.payment-method-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

.payment-method-name {
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 4px;
}

.payment-method-speed {
  font-size: 11px;
  color: var(--brand-accent);
  font-weight: 600;
  font-family: var(--brand-body-font);
}

/* ============================================================
   SECURITY & LICENSING SECTION
   ============================================================ */

.security-section {
  background: linear-gradient(135deg, #1a0e2e, #2d1b4e);
  position: relative;
  overflow: hidden;
}

.security-full-width {
  text-align: center;
  margin-bottom: 60px;
}

.security-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.security-card {
  background: rgba(18,10,36,0.6);
  border: 1px solid rgba(245,214,35,0.12);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.security-card:hover {
  border-color: rgba(245,214,35,0.3);
  transform: translateY(-3px);
}

.security-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 14px;
}

.security-card-title {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 8px;
}

.security-card-text {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   PROVIDERS SECTION
   ============================================================ */

.providers-section {
  background: var(--brand-bg);
}

.providers-asymmetric {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.providers-text h3 {
  font-family: var(--brand-head-font);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.providers-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 12px;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.provider-chip {
  background: rgba(45,27,78,0.5);
  border: 1px solid rgba(245,214,35,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
  cursor: default;
}

.provider-chip:hover {
  border-color: rgba(245,214,35,0.3);
  color: var(--brand-accent);
  background: rgba(45,27,78,0.7);
}

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

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

.support-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.support-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.support-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(18,10,36,0.5);
  border: 1px solid rgba(245,214,35,0.1);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color var(--transition);
}

.support-channel:hover {
  border-color: rgba(245,214,35,0.25);
}

.support-channel-icon {
  font-size: 26px;
  flex-shrink: 0;
}

.support-channel-info h4 {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 2px;
}

.support-channel-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.support-availability {
  background: rgba(18,10,36,0.5);
  border: 1px solid rgba(245,214,35,0.15);
  border-radius: 20px;
  padding: 40px;
}

.availability-title {
  font-family: var(--brand-head-font);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.availability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.availability-item {
  padding: 14px;
  background: rgba(45,27,78,0.5);
  border-radius: 10px;
}

.availability-item .avail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 4px;
}

.availability-item .avail-value {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-accent);
}

/* ============================================================
   MID-PAGE CTA SECTION
   ============================================================ */

.mid-cta-section {
  background: linear-gradient(135deg, #2d1b4e, #1a0e2e);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.mid-cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(245,214,35,0.07), transparent 65%);
  pointer-events: none;
}

.mid-cta-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.mid-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

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

.faq-section {
  background: var(--brand-bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.faq-intro p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(45,27,78,0.4);
  border: 1px solid rgba(245,214,35,0.1);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--brand-accent);
}

.faq-toggle {
  font-size: 18px;
  color: var(--brand-accent);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 400;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

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

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

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

.responsible-section {
  background: var(--brand-primary);
  text-align: center;
  padding: 60px 0;
}

.responsible-section .section-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.responsible-section p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.rg-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.rg-link {
  display: inline-block;
  background: rgba(18,10,36,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-family: var(--brand-head-font);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: border-color var(--transition), color var(--transition);
}

.rg-link:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

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

.site-footer {
  background: #0a0516;
  padding: 60px 0 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,214,35,0.3), transparent);
}

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

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

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

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

.footer-col-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

/* Footer Security Logos Row */
.footer-security-row {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,27,78,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--brand-head-font);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

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

.security-badge.age-badge {
  background: rgba(245,214,35,0.08);
  border-color: rgba(245,214,35,0.2);
  color: var(--brand-accent);
  font-size: 14px;
  font-weight: 800;
}

/* Footer Disclaimer */
.footer-disclaimer {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-disclaimer p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

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

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

/* ============================================================
   LEGAL PAGE STYLES
   ============================================================ */

.legal-page-wrap {
  padding: 60px 0 100px;
}

.legal-page-header {
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(245,214,35,0.1);
}

.legal-page-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.legal-last-updated {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-text);
  margin: 36px 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--brand-accent);
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 12px 0 20px 20px;
  list-style: disc;
}

.legal-content ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-contact-box {
  background: rgba(45,27,78,0.4);
  border: 1px solid rgba(245,214,35,0.15);
  border-radius: 14px;
  padding: 28px;
  margin-top: 40px;
}

.legal-contact-box h3 {
  color: var(--brand-accent);
  margin-top: 0;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-accent { color: var(--brand-accent); }
.text-muted  { color: rgba(255,255,255,0.5); }
.text-center { text-align: center; }
.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.hidden { display: none !important; }

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   MOBILE RESPONSIVE — BURGER MENU
   ============================================================ */

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--brand-text);
  font-size: 24px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background var(--transition);
  line-height: 1;
}

.mobile-menu-btn:hover {
  background: rgba(255,255,255,0.08);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large Tablets */
@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* Tablets / Small Laptops */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  .live-casino-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bonus-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .payments-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .providers-asymmetric {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .support-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* Burger menu breakpoint */
@media (max-width: 992px) {
  .main-nav {
    position: relative;
  }

  .main-nav ul {
    display: none;
  }

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

  .main-nav.mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: -20px;
    width: calc(100vw);
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 999;
    border-top: 1px solid rgba(245,214,35,0.1);
  }

  .main-nav.mobile-nav-active ul li a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    width: 100%;
  }

  .header-actions .btn-header-login {
    display: none;
  }
}

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

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

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

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

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

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

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

  .hero-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

  .bonus-card {
    padding: 28px 22px;
  }

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

/* Small Phones */
@media (max-width: 480px) {
  .hero-section {
    padding: 56px 0 80px;
    min-height: 70vh;
  }

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

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

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-hero,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .game-categories {
    gap: 8px;
  }

  .footer-security-row {
    gap: 12px;
  }

  .rg-links {
    gap: 10px;
  }

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

/* Tiny phones */
@media (max-width: 320px) {
  .container {
    padding: 0 14px;
  }

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