/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-top: 40px;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 32%;
  height: 100%;
  background: var(--teal);
  border-radius: 0 0 0 var(--radius-xl);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 54% 46%;
  align-items: center;
  gap: 40px;
  min-height: calc(92vh - 80px);
}
.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--soft-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}
.hero-tag i { font-size: 13px; color: var(--teal); }
.hero-title { color: var(--deep-navy); margin-bottom: 4px; }
.hero-title span { color: var(--teal); }
.hero-desc { font-size: 15px; max-width: 480px; color: var(--text-muted); }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-disclaimer {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.6;
  backdrop-filter: blur(4px);
  max-width: 480px;
}
.hero-disclaimer strong { color: var(--text-primary); }

/* Hero right visual */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-img-wrap {
  border-radius: var(--radius-xl);
 
  
  
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap img { width: 100%; height: 100%;  }
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--deep-navy) 100%);
}
.hero-img-placeholder i { font-size: 64px; color: rgba(255,255,255,0.2); }
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -28px;
  background: var(--soft-white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.hero-float-card span { font-size: 12px; font-weight: 700; color: var(--text-primary); }
.hero-float-card small { font-size: 10px; color: var(--text-muted); display: block; }

/* ===== COMPLIANCE BAND ===== */
.compliance-band {
  background: var(--dark-blue);
  border-radius: var(--radius-xl);
  padding: 64px;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}
.compliance-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.compliance-band-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 48px;
  align-items: center;
}
.compliance-cards { display: flex; flex-direction: column; gap: 16px; }
.compliance-card {
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.compliance-card.card-a { background: var(--deep-navy); }
.compliance-card.card-b { background: var(--teal); }
.compliance-card-title { font-size: 15px; font-weight: 800; color: var(--soft-white); margin-bottom: 4px; }
.compliance-card-text { font-size: 12px; color: var(--border-light); line-height: 1.6; }
.compliance-copy-title { font-size: 36px; font-weight: 800; color: var(--soft-white); line-height: 1.1; margin-bottom: 18px; }
.compliance-copy-text { font-size: 13px; color: var(--border-light); line-height: 1.75; margin-bottom: 28px; }

/* ===== STATS SECTION ===== */
.stats-section { background: var(--soft-white); padding: 70px 0 48px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stats-grid .stat-item { border-right: 1px dashed var(--border-light); }
.stats-grid .stat-item:last-child { border-right: none; }

/* ===== WHY SECTION ===== */
.why-section { background: var(--soft-white); padding: 48px 0 var(--section-gap); }
.why-grid {
  display: grid;
  grid-template-columns: 25% 37% 38%;
  gap: 28px;
  align-items: center;
}
.why-left { display: flex; flex-direction: column; gap: 20px; }
.why-left h2 { font-size: 34px; }
.why-center {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--teal);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-center img { width: 100%; height: 100%; object-fit: cover; }
.why-center-placeholder { display: flex; align-items: center; justify-content: center; }
.why-center-placeholder i { font-size: 72px; color: rgba(255,255,255,0.25); }
.why-right { display: flex; flex-direction: column; gap: 14px; }

/* ===== GAMES SECTION (dark band) ===== */
.games-section {
  background: var(--dark-blue);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 80px 0;
  margin: 0;
}
.games-section .section-header h2 { color: var(--soft-white); }
.games-section .section-header p { color: var(--border-light); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
}
.games-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.games-grid.three-col { grid-template-columns: repeat(3, 1fr); }

/* ===== HOW IT WORKS ===== */
.how-section {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  margin: 40px 20px;
}
.how-grid {
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 40px;
  align-items: center;
}
.how-left h2 { color: var(--soft-white); font-size: 32px; margin-bottom: 12px; }
.how-left p { color: rgba(255,255,255,0.75); font-size: 13px; margin-bottom: 22px; }
.how-steps { display: flex; align-items: center; gap: 0; }
.how-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.how-step-icon {
  width: 62px; height: 62px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
}
.how-step-icon.cream { background: var(--cream); }
.how-step-icon.navy { background: var(--deep-navy); }
.how-step-icon i { font-size: 26px; color: var(--teal); }
.how-step-icon.navy i { color: var(--soft-white); }
.how-step-title { font-size: 13px; font-weight: 700; color: var(--soft-white); }
.how-connector { flex: 0 0 40px; height: 2px; background: rgba(255,255,255,0.3); border-radius: 2px; margin-top: -20px; }

/* ===== ABOUT PREVIEW ===== */
.about-preview { padding: var(--section-gap) 0; background: var(--cream); }
.about-preview-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 52px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--teal);
  aspect-ratio: 16/11;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-visual-placeholder { display: flex; align-items: center; justify-content: center; }
.about-visual-placeholder i { font-size: 80px; color: rgba(255,255,255,0.2); }
.about-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--soft-white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-card);
}
.about-badge span { font-size: 12px; font-weight: 700; color: var(--text-primary); }
.about-right { display: flex; flex-direction: column; gap: 24px; }
.about-right h2 { font-size: 36px; }
.about-right p { font-size: 14px; }
.feature-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-soft);
}
.feature-chip i { font-size: 15px; color: var(--teal); }

/* ===== RESPONSIBLE GAMING PREVIEW ===== */
.rgpreview-section {
  background: var(--teal);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  margin: 0 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rgpreview-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.rgpreview-section h2 { color: var(--soft-white); font-size: 38px; margin-bottom: 16px; }
.rgpreview-section p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; font-size: 15px; }
.rgpreview-points {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.rgpreview-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.rgpreview-point i { font-size: 18px; color: var(--gold); }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--soft-white); padding: var(--section-gap) 0; }
.newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 { font-size: 34px; margin-bottom: 12px; }
.newsletter-inner p { margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1;
  padding: 13px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  outline: none;
  font-size: 13px;
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
}
.newsletter-form input:focus { border-color: var(--teal); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--dark-blue);
  padding: 100px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--soft-white); margin-bottom: 14px; }
.page-hero p { color: var(--border-light); font-size: 15px; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-subtle);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--border-light); }
.breadcrumb a:hover { color: var(--soft-white); }
.breadcrumb i { font-size: 12px; }

/* ===== ABOUT PAGE ===== */
.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  margin: 60px 0;
}
.mission-card {
  background: var(--soft-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.about-text h2 { margin-bottom: 16px; font-size: 32px; }
.about-text p { margin-bottom: 14px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 52px;
  padding: var(--section-gap) 0;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item { display: flex; flex-direction: column; gap: 6px; }
.contact-info-item label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-subtle); }
.contact-info-item span { font-size: 14px; color: var(--text-primary); font-weight: 500; }
.contact-form-wrap {
  background: var(--soft-white);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-card);
}
.contact-form-wrap h3 { margin-bottom: 24px; font-size: 22px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }

/* ===== GAMES PAGE ===== */
.games-page-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  border: 1.5px solid var(--border-light);
  color: var(--text-muted);
  background: var(--soft-white);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--soft-white);
}
.games-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
}

/* ===== GAME DETAIL PAGE ===== */
.game-detail-layout {
  padding: var(--section-gap) 0;
}
.game-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.game-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-blue);
  aspect-ratio: 16/9;
  position: relative;
}
.game-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.game-sidebar { display: flex; flex-direction: column; gap: 20px; }
.game-info-card {
  background: var(--soft-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.game-info-card h3 { font-size: 16px; margin-bottom: 14px; }
.game-meta-list { display: flex; flex-direction: column; gap: 10px; }
.game-meta-item { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.game-meta-item span:first-child { color: var(--text-muted); }
.game-meta-item span:last-child { font-weight: 600; color: var(--text-primary); }
.game-content-area { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.game-content-area h2 { font-size: 26px; margin-bottom: 14px; }
.game-content-area p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.game-content-area h3 { font-size: 18px; margin-bottom: 10px; color: var(--deep-navy); }
.tips-list { display: flex; flex-direction: column; gap: 10px; }
.tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.tips-list li i { color: var(--teal); margin-top: 2px; flex-shrink: 0; font-size: 15px; }
.related-games { margin-top: 48px; }
.related-games h2 { font-size: 26px; margin-bottom: 28px; }

/* ===== LEGAL PAGES ===== */
.legal-content { padding: var(--section-gap) 0; }
.legal-body { max-width: 800px; }
.legal-body h2 { font-size: 22px; margin: 36px 0 14px; }
.legal-body h3 { font-size: 16px; margin: 24px 0 10px; color: var(--teal); }
.legal-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.legal-body ul { margin: 0 0 16px 20px; list-style: disc; }
.legal-body ul li { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.7; }
.legal-effective { font-size: 12px; color: var(--text-subtle); margin-bottom: 32px; }

/* ===== RESPONSIBLE GAMING PAGE ===== */
.rg-content { padding: var(--section-gap) 0; }
.rg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 52px; }
.rg-card {
  background: var(--soft-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rg-card h3 { font-size: 17px; }
.rg-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.rg-tips-list { display: flex; flex-direction: column; gap: 12px; }
.rg-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 12px 16px;
  background: var(--soft-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.rg-tips-list li i { color: var(--teal); margin-top: 2px; flex-shrink: 0; font-size: 16px; }
.rg-warning-box {
  background: rgba(242, 97, 88, 0.07);
  border: 1.5px solid rgba(242, 97, 88, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 40px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.rg-warning-box i { color: var(--coral-red); font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.rg-warning-box h3 { font-size: 16px; margin-bottom: 8px; color: var(--coral-red); }
.rg-warning-box p { font-size: 13px; color: var(--text-muted); }
