@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Inter:wght@300;400;600;700&family=Luckiest+Guy&family=Poppins:wght@400;600;800&display=swap');

/* --- CUSTOM VARIABLES --- */
:root {
  --bg-deep-night: #06140F;
  --bg-rainforest: #0B1F16;
  --bg-dark-tropic: #102A20;
  --bg-volcanic: #1A3A2B;
  
  --banana-gold: linear-gradient(135deg, #FFD84D, #FFB300);
  --banana-glow: 0 0 35px rgba(255, 216, 77, 0.45);
  --banana-solid: #FFD84D;
  
  --jungle-green: linear-gradient(135deg, #00E676, #00C853);
  --jungle-glow: 0 0 30px rgba(0, 200, 83, 0.4);
  --green-solid: #00E676;
  
  --orange-burst: linear-gradient(135deg, #FF6F00, #FF3D00);
  --orange-glow: 0 0 30px rgba(255, 87, 34, 0.35);
  
  --premium-blend: linear-gradient(135deg, #FFD84D, #00E676, #FF3D00);
  
  --glass-bg: rgba(6, 20, 15, 0.75);
  --glass-border: 1px solid rgba(255, 216, 77, 0.18);
  --glass-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 70px rgba(255, 179, 0, 0.08);
  --glass-blur: blur(20px);
  --radius-lg: 28px;
  
  --font-headline: 'Luckiest Guy', 'Bangers', sans-serif;
  --font-body: 'Poppins', 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  
  --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- RESET & GLOBAL BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-deep-night);
  color: #E2F3EC;
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 230, 118, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 179, 0, 0.06) 0%, transparent 50%),
    url('images/photo-1502082553048-f009c37129b9.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

/* Hide scrollbars elegantly */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep-night);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-volcanic);
  border: 2px solid var(--bg-deep-night);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--banana-solid);
}

/* --- TYPOGRAPHY UTILITIES --- */
h1, h2, h3, h4 {
  font-family: var(--font-headline);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFF;
}

p {
  color: #B2C7BF;
}

.text-gradient-banana {
  background: var(--banana-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-green {
  background: var(--jungle-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-orange {
  background: var(--orange-burst);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- THE MONKEY TEMPLE NAVIGATION --- */
.monkey-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 8px 0; /* Slim proper header */
  transition: var(--transition-smooth);
  background: rgba(6, 20, 15, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 216, 77, 0.1);
}

.monkey-header.scrolled {
  background: rgba(6, 20, 15, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 216, 77, 0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  padding: 6px 0;
}

.nav-container {
  max-width: 1200px; /* Reduced for snug proper size */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* Logo brand styles - Small and proper, no icon */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-headline);
  font-size: 1.3rem; /* Made brand name small */
  color: #FFF;
  position: relative;
  transition: var(--transition-smooth);
}

.brand-logo:hover {
  transform: scale(1.05);
}

.brand-logo span {
  background: var(--premium-blend);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Navigation center bar - Slimmer and cleaner */
.glass-nav {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 50px;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: #CFE3DB;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 30px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover, .nav-link.active {
  color: #FFF;
  background: rgba(255, 216, 77, 0.15);
  box-shadow: inset 0 0 10px rgba(255, 216, 77, 0.1);
  transform: translateY(-1px);
}

/* Header CTA side - Slimmer */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-spin-now {
  background: var(--banana-gold);
  color: #06140F;
  border: none;
  font-family: var(--font-headline);
  font-size: 0.95rem;
  padding: 6px 16px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
  box-shadow: var(--banana-glow);
  position: relative;
  overflow: hidden;
}

.btn-spin-now::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.btn-spin-now:hover::before {
  left: 100%;
}

.btn-spin-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(255, 216, 77, 0.7);
}

.golden-badge {
  background: rgba(255, 216, 77, 0.1);
  border: 1px solid rgba(255, 216, 77, 0.3);
  padding: 6px 12px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFD84D;
  font-weight: bold;
  font-size: 0.8rem;
  box-shadow: inset 0 0 10px rgba(255, 216, 77, 0.05);
}

.badge-orb {
  width: 8px;
  height: 8px;
  background: #00E676;
  border-radius: 50%;
  box-shadow: 0 0 10px #00E676;
  animation: pulseNeon 1.5s infinite alternate;
}

/* --- HERO SECTION: WELCOME TO THE CRAZY JUNGLE --- */
.hero-section {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-vines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/photo-1448375240586-882707db888b.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: overlay;
  z-index: -2;
}

.volcano-glow {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 61, 0, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.jungle-glow-green {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.hero-container {
  max-width: 1000px; /* Snugger layout shape */
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center-aligned layout */
  text-align: center;
  gap: 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.hero-tag {
  background: rgba(255, 216, 77, 0.1);
  border: 1px solid rgba(255, 216, 77, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FFD84D;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.8rem; /* Adjusted for better proportion */
  line-height: 1.1;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
  max-width: 800px;
  animation: floatText 3s ease-in-out infinite alternate;
}

.hero-desc {
  font-size: 1.15rem;
  color: #C0D6CD;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: center;
}

.btn-primary {
  background: var(--premium-blend);
  color: #06140F;
  font-family: var(--font-headline);
  font-size: 1.3rem;
  padding: 15px 35px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 230, 118, 0.3);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 230, 118, 0.5), 0 0 30px rgba(255, 216, 77, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: #FFF;
  font-family: var(--font-headline);
  font-size: 1.2rem;
  padding: 15px 30px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 216, 77, 0.5);
  transform: translateY(-2px);
  color: #FFD84D;
}

.hero-disclaimer-badge {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.age-badge {
  background: #FF3D00;
  color: white;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(255, 61, 0, 0.3);
}

.disclaimer-text {
  font-size: 0.85rem;
  color: #8CA49A;
}

/* Hero Slot Preview - Balanced and Centered */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 440px; /* Properly proportioned shape */
  margin: 0 auto;
}

.visual-container {
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.visual-container:hover {
  transform: scale(1.02);
  border-color: rgba(255, 216, 77, 0.4);
}

/* Floating elements */
.floating-banana {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 65px;
  animation: floatLeaf 4s ease-in-out infinite alternate;
  z-index: 2;
}

.floating-leaf {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 60px;
  opacity: 0.7;
  animation: floatLeaf 5s ease-in-out infinite alternate-reverse;
  z-index: 2;
}

.slot-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 2px dashed rgba(255, 216, 77, 0.2);
  padding-bottom: 10px;
}

.slot-preview-logo {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  color: #FFD84D;
  text-shadow: 0 0 10px rgba(255,216,77,0.3);
}

.slot-preview-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 15px;
}

.slot-reel-window {
  background: rgba(6, 20, 15, 0.85);
  border-radius: 14px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 0 15px rgba(0,0,0,0.8);
  position: relative;
}

.slot-item {
  font-size: 2rem;
  animation: spinReelItem 0.8s ease-in-out infinite alternate;
}

.slot-reel-window:nth-child(2) .slot-item {
  animation-delay: 0.2s;
}

.slot-reel-window:nth-child(3) .slot-item {
  animation-delay: 0.4s;
}

.slot-preview-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-stat-box {
  background: rgba(0,0,0,0.3);
  padding: 8px 12px;
  border-radius: 10px;
  text-align: center;
}

.preview-stat-box span {
  display: block;
  font-size: 0.7rem;
  color: #8CA49A;
  text-transform: uppercase;
}

.preview-stat-box strong {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  color: #00E676;
}

/* --- STATS SECTION --- */
.stats-section {
  padding: 50px 0;
  background: rgba(6, 20, 15, 0.5);
  display: flex;
  justify-content: center;
}

.stats-grid {
  max-width: 1100px; /* Aligned proper shape */
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  padding: 0 20px;
  justify-content: center;
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 230, 118, 0.3);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.stat-number {
  font-family: var(--font-headline);
  font-size: 1.9rem;
  color: #FFD84D;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: #8CA49A;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- MAIN GAME SECTION --- */
.game-section {
  padding: 80px 0;
  position: relative;
  background-image: linear-gradient(180deg, transparent, rgba(16, 42, 32, 0.6) 50%, transparent);
}

.game-container-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.game-intro-header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  color: #00E676;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.game-intro-title {
  font-size: 3rem;
  margin-bottom: 12px;
}

.game-frame-outer {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 3px solid rgba(255, 216, 77, 0.25);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.65), 0 0 60px rgba(255, 216, 77, 0.12);
  border-radius: 28px;
  padding: 20px;
  position: relative;
  max-width: 900px; /* Snug and proper size */
  margin: 0 auto;
}

.game-frame-outer::before {
  content: '🌿';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.5rem;
}

.game-frame-outer::after {
  content: '🌿';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
}

.game-frame-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.game-info-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mascot-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #FFD84D;
  background: #0B1F16;
  object-fit: cover;
}

.game-status-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #8CA49A;
}

.game-status-dot {
  width: 7px;
  height: 7px;
  background: #00E676;
  border-radius: 50%;
  animation: pulseNeon 1s infinite alternate;
}

.game-controls-top {
  display: flex;
  gap: 8px;
}

.control-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #FFF;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.control-btn:hover {
  background: var(--banana-gold);
  color: #06140F;
  border-color: transparent;
  transform: scale(1.05);
}

.game-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.05);
  background: #000;
}

.game-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-frame-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.how-to-trigger-btn {
  background: rgba(0, 230, 118, 0.1);
  color: #00E676;
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 8px 16px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.how-to-trigger-btn:hover {
  background: #00E676;
  color: #06140F;
  box-shadow: var(--jungle-glow);
}

/* --- FEATURES SECTION --- */
.features-section {
  padding: 80px 0;
  position: relative;
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header-center {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-subtitle {
  color: #00E676;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 15px;
}

.mayhem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
}

.mayhem-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centered layout inner card */
  text-align: center;
  gap: 12px;
}

.mayhem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--banana-gold);
  opacity: 0;
  transition: var(--transition-smooth);
}

.mayhem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 216, 77, 0.4);
}

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

.mayhem-card-icon-box {
  background: rgba(255, 216, 77, 0.08);
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 2rem;
  border: 1px solid rgba(255, 216, 77, 0.2);
  transition: var(--transition-smooth);
}

.mayhem-card:hover .mayhem-card-icon-box {
  background: var(--banana-gold);
  color: #06140F;
  transform: rotate(-5deg);
}

.mayhem-card-title {
  font-size: 1.4rem;
  color: #FFF;
}

.mayhem-card-desc {
  font-size: 0.9rem;
  color: #B2C7BF;
}

/* --- BANANA VAULT INTERACTIVE CALLOUT --- */
.vault-banner {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.vault-inner {
  background: linear-gradient(135deg, rgba(26, 58, 43, 0.95), rgba(6, 20, 15, 0.95)), 
              url('images/photo-1544816155-12df9643f363.png');
  background-blend-mode: overlay;
  background-size: cover;
  border-radius: 28px;
  border: 2px solid rgba(0, 230, 118, 0.25);
  padding: 40px;
  display: flex;
  flex-direction: column; /* Stacked layout for perfect balance */
  align-items: center;
  text-align: center;
  gap: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.vault-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.vault-info h2 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.vault-fruits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.vault-spin-action {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  width: 100%;
  max-width: 450px;
}

.vault-spin-btn {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  background: var(--banana-gold);
  color: #06140F;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--banana-glow);
  transition: var(--transition-smooth);
}

.vault-spin-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(255, 216, 77, 0.6);
}

/* --- FOOTER & COMPLIANCE SYSTEM --- */
.monkey-footer {
  background: #040F0B;
  border-top: 3px solid rgba(255, 216, 77, 0.2);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.footer-brand-logo {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  color: #FFF;
  text-decoration: none;
}

.footer-brand-logo span {
  color: #FFD84D;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: #8CA49A;
  line-height: 1.6;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col-title {
  font-size: 1.1rem;
  color: #FFF;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(0, 230, 118, 0.2);
  padding-bottom: 6px;
  display: inline-block;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-link {
  color: #8CA49A;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: #FFD84D;
  transform: translateY(-2px);
}

.footer-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-circle {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-circle:hover {
  background: var(--jungle-green);
  color: #06140F;
  transform: translateY(-3px);
}

/* Compliance Bar Centered */
.footer-compliance-row {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 25px 0;
  margin-bottom: 25px;
}

.compliance-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.compliance-badge-large {
  background: #FF3D00;
  color: #FFF;
  font-family: var(--font-headline);
  font-size: 1.8rem;
  padding: 6px 16px;
  border-radius: 10px;
  line-height: 1;
  box-shadow: 0 4px 15px rgba(255, 61, 0, 0.4);
}

.compliance-text {
  font-size: 0.85rem;
  color: #8CA49A;
  line-height: 1.6;
  max-width: 850px;
}

.company-info-text {
  font-size: 0.8rem;
  color: #6A8077;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #6A8077;
}

/* --- MODAL DIALOGS --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 20, 15, 0.85);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: var(--bg-rainforest);
  border: 2px solid rgba(255, 216, 77, 0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 50px rgba(255, 216, 77, 0.15);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 750px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: #FFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: #FF3D00;
  color: #FFF;
  transform: rotate(90deg);
}

.modal-content-inner {
  padding: 35px;
}

.modal-headline {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #FFD84D;
  text-align: center;
}

.modal-body {
  font-family: var(--font-body);
  color: #CFE3DB;
}

.modal-body p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.modal-body h3 {
  font-size: 1.25rem;
  margin: 25px 0 12px;
  color: #00E676;
}

.modal-body ul, .modal-body ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.modal-body li {
  margin-bottom: 8px;
}

/* Contact Form Specific Styles */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form-group.full-width {
  grid-column: span 2;
}

.contact-input, .contact-textarea {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px;
  color: #FFF;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.contact-input:focus, .contact-textarea:focus {
  border-color: #00E676;
  outline: none;
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.15);
}

.contact-textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-submit-btn {
  background: var(--banana-gold);
  color: #06140F;
  border: none;
  padding: 12px 25px;
  font-family: var(--font-headline);
  font-size: 1.2rem;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: fit-content;
  margin: 0 auto;
}

.contact-submit-btn:hover {
  transform: scale(1.03);
  box-shadow: var(--banana-glow);
}

/* --- ANIMATIONS & KEYFRAMES --- */
@keyframes pulseNeon {
  0% { opacity: 0.5; box-shadow: 0 0 5px currentColor; }
  100% { opacity: 1; box-shadow: 0 0 20px currentColor; }
}

@keyframes floatText {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

@keyframes floatLeaf {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(8deg); }
}

@keyframes spinReelItem {
  0% { transform: translateY(-8px); }
  100% { transform: translateY(8px); }
}

@keyframes modalIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1200px) {
  .hero-container {
    max-width: 800px;
  }
}

@media (max-width: 991px) {
  .glass-nav {
    display: none; 
  }
  
  .nav-container {
    justify-content: space-between;
  }
  
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .contact-form-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 580px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .game-frame-outer {
    padding: 10px;
  }
}