/* ===== 96M Fishing Arcade Singapore — Premium Design ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800;900&display=swap');

/* --- Variables --- */
:root {
  --white: #ffffff;
  --gold-100: #fef3c7;
  --gold-200: #fde68a;
  --gold-300: #fcd34d;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-600: #d97706;
  --gold-700: #b45309;
  --ocean-50: #ecfeff;
  --ocean-100: #cffafe;
  --ocean-200: #a5f3fc;
  --ocean-300: #67e8f9;
  --ocean-400: #22d3ee;
  --ocean-500: #06b6d4;
  --ocean-600: #0891b2;
  --ocean-700: #0e7490;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --navy-600: #1e3a5f;
  --navy-700: #162d4d;
  --navy-800: #0f2441;
  --navy-900: #0a1929;
  --navy-950: #060f1a;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-gold: 0 4px 20px rgba(245,158,11,0.25);
  --shadow-gold-lg: 0 8px 32px rgba(245,158,11,0.35);
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; line-height: 1.2; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float-slow { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-18px) rotate(3deg)} }
@keyframes bubble-rise {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  100% { transform: translateY(-120px) scale(0.3); opacity: 0; }
}
@keyframes swim {
  0% { transform: translateX(-100px) scaleX(1); opacity: 0; }
  10% { opacity: 1; }
  49% { transform: translateX(calc(100vw + 100px)) scaleX(1); opacity: 1; }
  50% { transform: translateX(calc(100vw + 100px)) scaleX(-1); opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(-100px) scaleX(-1); opacity: 0; }
}
@keyframes spin-reel {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(360deg); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 8px rgba(245,158,11,0.3); }
  50% { box-shadow: 0 0 24px rgba(245,158,11,0.6); }
}
@keyframes coin-spin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all var(--transition); border: 2px solid transparent;
  text-align: center; letter-spacing: 0.01em; position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--navy-900);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white); box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(37,99,235,0.4); color: var(--white); }
.btn-outline {
  background: rgba(255,255,255,0.08); color: var(--white);
  border-color: rgba(255,255,255,0.25); backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); transform: translateY(-3px); color: var(--white); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900); font-weight: 800; box-shadow: var(--shadow-gold);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold-lg); color: var(--navy-900); }
.btn-white { background: var(--white); color: var(--gold-600); font-weight: 800; box-shadow: var(--shadow-lg); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); color: var(--gold-700); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 16px; border-radius: 50px; font-size: 0.72rem;
  font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-gold { background: linear-gradient(135deg, var(--gold-100), var(--gold-200)); color: var(--gold-700); }
.badge-ocean { background: linear-gradient(135deg, var(--ocean-100), var(--ocean-200)); color: var(--ocean-700); }
.badge-navy { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  position: relative; width: 100%; height: 60px; overflow: hidden;
  line-height: 0; margin-top: -1px;
}
.wave-divider svg { position: relative; display: block; width: calc(100% + 1.3px); height: 60px; }
.wave-divider.flip { transform: rotate(180deg); margin-top: 0; margin-bottom: -1px; }

/* ===== FISH DECORATIONS (CSS) ===== */
.fish-decoration {
  position: absolute; pointer-events: none; z-index: 1;
  font-size: 2rem; opacity: 0.08;
}
.fish-1 { top: 20%; left: 5%; animation: float 5s ease-in-out infinite; }
.fish-2 { top: 60%; right: 8%; animation: float-slow 7s ease-in-out infinite; font-size: 1.5rem; }
.fish-3 { bottom: 15%; left: 15%; animation: float 6s ease-in-out 1s infinite; font-size: 2.5rem; }
.fish-4 { top: 35%; right: 20%; animation: float-slow 8s ease-in-out 0.5s infinite; font-size: 1.8rem; }

/* ===== BUBBLES ===== */
.bubbles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1;
}
.bubble {
  position: absolute; bottom: -20px; width: 10px; height: 10px;
  border-radius: 50%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  animation: bubble-rise linear infinite;
}
.bubble:nth-child(1) { left: 10%; width: 8px; height: 8px; animation-duration: 6s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 25%; width: 12px; height: 12px; animation-duration: 8s; animation-delay: 1s; }
.bubble:nth-child(3) { left: 45%; width: 6px; height: 6px; animation-duration: 5s; animation-delay: 2s; }
.bubble:nth-child(4) { left: 65%; width: 14px; height: 14px; animation-duration: 9s; animation-delay: 0.5s; }
.bubble:nth-child(5) { left: 80%; width: 8px; height: 8px; animation-duration: 7s; animation-delay: 3s; }
.bubble:nth-child(6) { left: 35%; width: 10px; height: 10px; animation-duration: 6.5s; animation-delay: 1.5s; }
.bubble:nth-child(7) { left: 55%; width: 7px; height: 7px; animation-duration: 7.5s; animation-delay: 2.5s; }
.bubble:nth-child(8) { left: 90%; width: 11px; height: 11px; animation-duration: 8.5s; animation-delay: 0.8s; }

/* ===== SLOT REEL DECORATION ===== */
.slot-reel-deco {
  display: inline-flex; gap: 4px; padding: 6px; background: rgba(0,0,0,0.3);
  border-radius: 8px; border: 2px solid rgba(255,255,255,0.1);
}
.slot-symbol {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  border-radius: 4px; font-size: 1.2rem;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ===== HEADER ===== */
.header {
  background: rgba(10,25,41,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky; top: 0; z-index: 1000;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem;
  font-weight: 900; color: var(--white); letter-spacing: -0.02em;
}
.logo img { height: 36px; width: 36px; border-radius: 8px; }
.logo span { color: var(--gold-400); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-weight: 500; font-size: 0.9rem; color: rgba(255,255,255,0.6);
  padding: 8px 16px; border-radius: 50px; transition: all var(--transition);
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav a.active { color: var(--gold-400); background: rgba(245,158,11,0.1); font-weight: 600; }
.nav .btn { margin-left: 8px; padding: 10px 24px; font-size: 0.85rem; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; border-radius: var(--radius);
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: rgba(255,255,255,0.7); margin: 4px auto; border-radius: 2px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 30%, var(--navy-800) 60%, #0c3155 100%);
  color: var(--white); padding: 100px 0 120px; text-align: center; overflow: hidden;
}
.hero-ocean-bg {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(6,182,212,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(245,158,11,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(6,182,212,0.05) 0%, transparent 40%);
}
.hero .container { position: relative; z-index: 2; }

.hero-badge-wrapper { margin-bottom: 28px; }
.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2);
  padding: 8px 20px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  color: var(--gold-300);
}
.hero-badge-pill .live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #34d399;
  animation: glow-pulse 2s infinite;
}

.hero h1 {
  font-size: 3.8rem; font-weight: 900; margin-bottom: 20px;
  letter-spacing: -0.03em; line-height: 1.05; max-width: 750px;
  margin-left: auto; margin-right: auto;
}
.hero h1 .gold-text {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-300));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 3s linear infinite;
}
.hero .hero-sub {
  font-size: 1.15rem; line-height: 1.8; opacity: 0.6; max-width: 520px;
  margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Hero slot decoration */
.hero-slot-bar {
  display: flex; justify-content: center; gap: 12px; margin-top: 48px;
  padding: 16px 28px; background: rgba(0,0,0,0.25); border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06); display: inline-flex;
}
.hero-slot-item {
  display: flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: rgba(255,255,255,0.04); border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-slot-item .icon { font-size: 1.6rem; }
.hero-slot-item .info .val {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem;
  font-weight: 800; color: var(--gold-400); display: block; line-height: 1.2;
}
.hero-slot-item .info .lbl { font-size: 0.7rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; position: relative; }
.section-light { background: var(--gray-50); }
.section-dark {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-900));
  color: var(--white); position: relative; overflow: hidden;
}
.section-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 {
  font-size: 2.4rem; font-weight: 900; color: var(--gray-900);
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header h2 .hl { color: var(--gold-500); }
.section-dark .section-header h2 .hl {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-header p { color: var(--gray-500); font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.5); }

/* ===== FEATURE CARDS ===== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: var(--white); padding: 32px 24px; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--ocean-400));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition-slow);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px;
}
.feature-icon.gold { background: linear-gradient(135deg, var(--gold-100), var(--gold-200)); color: var(--gold-600); }
.feature-icon.ocean { background: linear-gradient(135deg, var(--ocean-100), var(--ocean-200)); color: var(--ocean-600); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.feature-card p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; }

/* dark variant */
.section-dark .feature-card {
  background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08);
}
.section-dark .feature-card:hover { background: rgba(255,255,255,0.08); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.section-dark .feature-card h3 { color: var(--white); }
.section-dark .feature-card p { color: rgba(255,255,255,0.5); }

/* ===== GAME CARDS ===== */
.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.game-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); transition: all var(--transition);
}
.game-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.game-card-img {
  height: 200px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800), #0c3155);
  display: flex; align-items: center; justify-content: center;
}
.game-card-img .game-icon { font-size: 3.5rem; position: relative; z-index: 2; animation: float 4s ease-in-out infinite; }
.game-card-img .game-bubbles {
  position: absolute; inset: 0; overflow: hidden;
}
.game-card-img .game-bubbles span {
  position: absolute; bottom: -10px; width: 6px; height: 6px;
  border-radius: 50%; background: rgba(255,255,255,0.1);
  animation: bubble-rise linear infinite;
}
.game-card-img .game-bubbles span:nth-child(1) { left: 15%; animation-duration: 4s; }
.game-card-img .game-bubbles span:nth-child(2) { left: 40%; animation-duration: 5s; animation-delay: 1s; width: 8px; height: 8px; }
.game-card-img .game-bubbles span:nth-child(3) { left: 70%; animation-duration: 3.5s; animation-delay: 0.5s; width: 5px; height: 5px; }
.game-card-img .game-bubbles span:nth-child(4) { left: 85%; animation-duration: 6s; animation-delay: 2s; width: 7px; height: 7px; }

.game-card-img .slot-badge {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900); padding: 3px 10px; border-radius: 50px;
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; z-index: 3;
}
.game-card-body { padding: 24px; }
.game-card-body .provider {
  font-size: 0.7rem; color: var(--gold-600); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px;
}
.game-card-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.game-card-body p { color: var(--gray-500); font-size: 0.88rem; margin-bottom: 8px; line-height: 1.6; }
.game-card-body .game-meta {
  display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap;
}
.game-card-body .game-meta span {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.72rem; color: var(--gray-400); background: var(--gray-50);
  padding: 3px 10px; border-radius: 50px;
}
.game-card-body .btn { width: 100%; padding: 11px 20px; }

/* ===== PROMO CARDS ===== */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.promo-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); transition: all var(--transition);
  display: flex; flex-direction: column;
}
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.promo-card-header {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white); padding: 28px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.promo-card-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245,158,11,0.1) 0%, transparent 60%);
}
.promo-card-header h3 {
  font-size: 0.75rem; font-weight: 700; opacity: 0.6;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
}
.promo-card-header .promo-value {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.promo-card-header .promo-icon { font-size: 1.5rem; margin-bottom: 8px; }
.promo-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.promo-card-body p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6; }
.promo-card-body ul { margin-bottom: 20px; }
.promo-card-body ul li {
  color: var(--gray-500); font-size: 0.85rem; padding: 5px 0 5px 24px; position: relative;
}
.promo-card-body ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: var(--white);
}
.promo-card-body ul li::after {
  content: '✓'; position: absolute; left: 3px; top: 8px;
  font-size: 0.55rem; color: var(--white); font-weight: 900;
}
.promo-card-body .btn { margin-top: auto; width: 100%; }

/* ===== AMBASSADOR ===== */
.ambassador-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; }
.ambassador-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); text-align: center; transition: all var(--transition);
}
.ambassador-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.ambassador-img {
  height: 260px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-900), #0c3155, var(--navy-800));
  display: flex; align-items: center; justify-content: center;
}
.ambassador-img .initials {
  font-size: 5rem; font-weight: 900; font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  position: relative; z-index: 2;
}
.ambassador-img .gold-frame {
  position: absolute; inset: 16px; border: 2px solid rgba(245,158,11,0.15);
  border-radius: var(--radius); z-index: 1;
}
.ambassador-card-body { padding: 28px; }
.ambassador-card-body h3 { font-size: 1.25rem; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; }
.ambassador-card-body .role {
  display: inline-block; padding: 3px 12px; border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  color: var(--gold-700); font-weight: 800; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.ambassador-card-body p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-900));
  color: var(--white); text-align: center; padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-banner .cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner .cta-icons { font-size: 2.5rem; margin-bottom: 20px; display: flex; justify-content: center; gap: 16px; }
.cta-banner .cta-icons span { animation: float 3s ease-in-out infinite; }
.cta-banner .cta-icons span:nth-child(2) { animation-delay: 0.5s; }
.cta-banner .cta-icons span:nth-child(3) { animation-delay: 1s; }
.cta-banner h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 12px; letter-spacing: -0.02em; }
.cta-banner h2 .hl {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-banner p { opacity: 0.5; margin-bottom: 32px; font-size: 1.1rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-900), #0c3155);
  color: var(--white); padding: 64px 0; text-align: center;
  position: relative; overflow: hidden;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-size: 2.8rem; font-weight: 900; margin-bottom: 12px; letter-spacing: -0.02em; }
.page-header p { opacity: 0.5; font-size: 1.1rem; }

/* ===== CONTENT BLOCK ===== */
.content-block { padding: 56px 0; }
.content-block h2 { font-size: 1.6rem; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; }
.content-block p { margin-bottom: 16px; color: var(--gray-600); line-height: 1.7; }
.content-block ul { margin-bottom: 20px; }
.content-block ul li {
  margin-bottom: 10px; color: var(--gray-600); padding-left: 28px;
  position: relative; line-height: 1.6;
}
.content-block ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}

/* ===== INFO TABLE ===== */
.info-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin: 24px 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.info-table th, .info-table td { padding: 16px 24px; text-align: left; }
.info-table th {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--gold-300); font-weight: 700; font-size: 0.88rem; width: 200px;
  letter-spacing: 0.02em;
}
.info-table td { background: var(--white); border-bottom: 1px solid var(--gray-100); color: var(--gray-700); font-size: 0.93rem; }
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: var(--gold-100); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-950); color: rgba(255,255,255,0.5);
  padding: 64px 0 28px; position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.3;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 {
  color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.footer h4::before { content: ''; width: 3px; height: 16px; border-radius: 2px; background: var(--gold-500); }
.footer p { font-size: 0.88rem; line-height: 1.7; }
.footer a { color: rgba(255,255,255,0.4); font-size: 0.88rem; transition: all var(--transition); }
.footer a:hover { color: var(--gold-400); transform: translateX(4px); }
.footer ul li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.25);
  display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap;
}
.footer-bottom .separator { opacity: 0.3; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 3rem; }
}
@media (max-width: 768px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,25,41,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; text-align: left; padding: 12px 16px; border-radius: var(--radius); }
  .nav .btn { margin-left: 0; margin-top: 8px; }
  .nav-toggle { display: flex; }

  .hero { padding: 60px 0 80px; }
  .hero h1 { font-size: 2.2rem; }
  .hero .hero-sub { font-size: 0.95rem; }
  .hero-slot-bar { flex-wrap: wrap; gap: 8px; padding: 12px 16px; }
  .hero-slot-item { padding: 6px 12px; }
  .hero-slot-item .info .val { font-size: 1rem; }

  .section { padding: 56px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .page-header h1 { font-size: 2rem; }
  .game-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .promo-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .ambassador-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; }
  .hero h1 { font-size: 1.8rem; }
  .container { padding: 0 16px; }
}
