/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: transparent;
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--soft-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-soft);
  padding: 0 8px 0 22px;
  height: 58px;
  max-width: calc(var(--container-max) - 80px);
  margin: 0 auto;
  pointer-events: all;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 36px; width: auto; display: block; }

/* Nav list */
.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: block;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--radius-full);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-link:hover { color: var(--teal); background: rgba(63,125,122,0.07); }
.nav-link.active { color: var(--teal); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--cream);
  color: var(--text-primary);
  transition: background var(--transition-fast);
}
.nav-toggle:hover { background: var(--border-light); }
.nav-toggle i { font-size: 20px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--soft-white);
  z-index: 300;
  padding: 20px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: var(--shadow-medium);
  transform: translateY(-100%);
  transition: transform 340ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mobile-nav.open { transform: translateY(0); display: block; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.mobile-nav-list a:hover { background: var(--cream); color: var(--teal); }
.mobile-nav-footer { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border-light); }
.nav-close {
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16,47,66,0.4);
  z-index: 250;
  backdrop-filter: blur(3px);
}
.nav-overlay.open { display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  white-space: nowrap;
}
.btn i { font-size: 16px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(18,48,64,0.22); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--teal);
  color: var(--soft-white);
}
.btn-primary:hover { background: var(--deep-navy); }

.btn-secondary {
  background: var(--deep-navy);
  color: var(--soft-white);
}
.btn-secondary:hover { background: var(--teal); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--soft-white); }

.btn-outline-white {
  background: transparent;
  color: var(--soft-white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--soft-white); }

.btn-sm { height: 36px; padding: 0 18px; font-size: 12px; }
.btn-lg { height: 52px; padding: 0 32px; font-size: 14px; }

/* ===== CARDS ===== */
.card {
  background: var(--soft-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.card-navy { background: var(--deep-navy); }
.card-dark { background: var(--dark-blue); }
.card-teal { background: var(--teal); }
.card-cream { background: var(--cream); }

/* Icon badge */
.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}
.icon-badge-sm { width: 36px; height: 36px; }
.icon-badge-md { width: 54px; height: 54px; }
.icon-badge-lg { width: 70px; height: 70px; }
.icon-badge i { font-size: 22px; }
.icon-badge-lg i { font-size: 32px; }
.icon-badge-sm i { font-size: 16px; }
.badge-teal { background: var(--teal); color: var(--soft-white); }
.badge-navy { background: var(--deep-navy); color: var(--soft-white); }
.badge-cream { background: var(--cream); color: var(--teal); }
.badge-gold { background: var(--gold); color: var(--deep-navy); }

/* ===== GAME CARD ===== */
.game-card {
  background: var(--dark-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}
.game-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.game-card__thumb {
  width: 100%;
  aspect-ratio: 339 / 180;
  object-fit: cover;
  display: block;
}
.game-card__thumb-placeholder {
  width: 100%;
  aspect-ratio: 339 / 180;
  background: linear-gradient(135deg, var(--teal) 0%, var(--deep-navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-card__thumb-placeholder i { font-size: 44px; color: rgba(255,255,255,0.3); }
.game-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.game-card__provider {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.game-card__title { font-size: 16px; font-weight: 800; color: var(--soft-white); line-height: 1.2; }
.game-card__tagline { font-size: 12px; color: var(--text-subtle); line-height: 1.5; flex: 1; }
.game-card__footer { padding: 0 20px 20px; }

/* ===== FEATURE PILL ===== */
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--teal);
  color: var(--soft-white);
  border-radius: var(--radius-full);
  padding: 12px 20px;
  box-shadow: 0 10px 22px rgba(18,48,64,0.18);
  font-size: 13px;
  font-weight: 700;
}
.feature-pill .icon-badge { width: 32px; height: 32px; background: var(--dark-blue); }
.feature-pill .icon-badge i { font-size: 15px; }

/* ===== STATS CARD ===== */
.stat-item { text-align: center; padding: 24px; }
.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-suffix { font-size: 32px; }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.stat-icon { margin: 0 auto 14px; }

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: var(--content-gap); }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 540px; }
.section-header.center p { margin: 0 auto; }

/* ===== DOTTED DIVIDER ===== */
.dotted-divider {
  border: none;
  border-top: 2px dashed var(--border-light);
  margin: 0;
}
.dotted-divider.teal { border-color: var(--teal); opacity: 0.4; }
.dotted-divider.white { border-color: rgba(255,255,255,0.2); }

/* ===== FORMS ===== */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--soft-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(63,125,122,0.14);
}
.form-control.dark {
  background: var(--border-dark);
  border-color: transparent;
  color: var(--soft-white);
}
.form-control.dark::placeholder { color: var(--text-subtle); }
.form-control.dark:focus { border-color: var(--teal); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(63,125,122,0.12);
  border: 1px solid var(--teal);
  border-radius: var(--radius-md);
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
}
.form-success.show { display: flex; }
.form-success i { font-size: 20px; }

/* ===== PILL INPUT ROW ===== */
.pill-input-row {
  display: flex;
  gap: 0;
  background: var(--border-dark);
  border-radius: var(--radius-full);
  overflow: hidden;
  padding: 4px;
}
.pill-input-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 16px;
  color: var(--soft-white);
  font-size: 13px;
}
.pill-input-row input::placeholder { color: var(--text-subtle); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--deep-navy);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 70px var(--container-pad) 36px;
  color: var(--soft-white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; margin-bottom: 16px; }
.footer-logo img { height: 38px; width: auto; }
.footer-desc { font-size: 13px; color: var(--text-subtle); line-height: 1.7; margin-bottom: 24px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: var(--border-light);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--soft-white); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--border-light);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.social-btn:hover { background: var(--teal); color: var(--soft-white); }
.social-btn i { font-size: 16px; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 12px; color: var(--text-subtle); }
.footer-compliance {
  font-size: 11px;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-compliance i { color: var(--coral-red); font-size: 14px; }
