/* ================================================
   MIXPLAYFORGE – CRAZY MONKEY JUNGLE THEME
   Complete Stylesheet
   ================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0a0f0a;
  color: #e2e8e2;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
iframe { border: none; }

/* ----- CSS VARIABLES ----- */
:root {
  --jungle-black: #0a0f0a;
  --deep-forest: #132a13;
  --dark-earth: #1b1b1b;
  --leaf-green: #22c55e;
  --neon-jungle: #4ade80;
  --deep-green: #14532d;
  --banana-yellow: #facc15;
  --tropical-orange: #fb923c;
  --warm-brown: #78350f;
  --gold-accent: #d4af37;
  --glass-bg: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --glass-blur: 18px;
  --gradient-jungle: linear-gradient(135deg, #22c55e, #14532d);
  --gradient-monkey: linear-gradient(135deg, #facc15, #fb923c);
  --gradient-gold: linear-gradient(135deg, #d4af37, #78350f);
  --sidebar-width: 76px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-glow-green: 0 0 30px rgba(34,197,94,0.3);
  --shadow-glow-gold: 0 0 30px rgba(212,175,55,0.3);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- SCROLLBAR ----- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--jungle-black); }
::-webkit-scrollbar-thumb { background: var(--deep-green); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--leaf-green); }

/* ----- SELECTION ----- */
::selection { background: var(--leaf-green); color: var(--jungle-black); }

/* ================================================
   FLOATING JUNGLE PARTICLES
   ================================================ */
.jungle-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.leaf {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.15;
  animation: leafFloat linear infinite;
}

.leaf-1 { left: 10%; font-size: 1.2rem; animation-duration: 18s; animation-delay: 0s; }
.leaf-2 { left: 25%; font-size: 1.8rem; animation-duration: 22s; animation-delay: 3s; }
.leaf-3 { left: 40%; font-size: 1rem; animation-duration: 16s; animation-delay: 6s; }
.leaf-4 { left: 55%; font-size: 1.5rem; animation-duration: 20s; animation-delay: 2s; }
.leaf-5 { left: 70%; font-size: 1.3rem; animation-duration: 24s; animation-delay: 5s; }
.leaf-6 { left: 85%; font-size: 1.6rem; animation-duration: 19s; animation-delay: 1s; }
.leaf-7 { left: 15%; font-size: 1.1rem; animation-duration: 21s; animation-delay: 8s; }
.leaf-8 { left: 92%; font-size: 1.4rem; animation-duration: 17s; animation-delay: 4s; }

@keyframes leafFloat {
  0% {
    transform: translateY(-10vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% {
    transform: translateY(110vh) translateX(80px) rotate(360deg);
    opacity: 0;
  }
}

/* ================================================
   SIDEBAR NAVIGATION
   ================================================ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: rgba(10, 15, 10, 0.92);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  z-index: 1000;
  transition: background var(--transition-smooth);
}

.sidebar-logo {
  margin-bottom: 40px;
}

.logo-icon {
  font-size: 2rem;
  display: block;
  animation: monkeyBounce 3s ease-in-out infinite;
}

@keyframes monkeyBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.sidebar-item {
  position: relative;
}

.sidebar-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-smooth);
  position: relative;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: var(--leaf-green);
  background: rgba(34, 197, 94, 0.1);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}

.sidebar-link.active {
  background: rgba(34, 197, 94, 0.15);
}

.sidebar-icon {
  width: 22px;
  height: 22px;
}

.sidebar-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  background: var(--dark-earth);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  border: 1px solid var(--glass-border);
}

.sidebar-link:hover .sidebar-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.sidebar-bottom {
  margin-top: auto;
}

/* ================================================
   MOBILE HEADER
   ================================================ */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(10, 15, 10, 0.95);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  z-index: 1001;
}

.mobile-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

.mobile-logo {
  font-size: 1.1rem;
  color: #fff;
}

.mobile-logo strong {
  color: var(--leaf-green);
}

.mobile-menu-btn {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE NAV OVERLAY */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  gap: 6px;
}

.mobile-nav-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--leaf-green);
  background: rgba(34, 197, 94, 0.1);
}

.mobile-nav-small {
  font-size: 0.95rem;
  font-weight: 400;
}

.mobile-nav-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 12px 0;
}

/* ================================================
   MAIN CONTENT
   ================================================ */
.main-content {
  margin-left: var(--sidebar-width);
  position: relative;
  z-index: 1;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 60px 80px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(34, 197, 94, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(250, 204, 21, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(20, 83, 45, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, var(--jungle-black) 0%, var(--deep-forest) 50%, var(--jungle-black) 100%);
}

/* Sun rays */
.hero-rays {
  position: absolute;
  top: -20%;
  right: 10%;
  width: 600px;
  height: 600px;
}

.ray {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(250, 204, 21, 0.15), transparent);
  transform-origin: top center;
}

.ray-1 { transform: rotate(-30deg); }
.ray-2 { transform: rotate(-15deg); opacity: 0.7; }
.ray-3 { transform: rotate(0deg); }
.ray-4 { transform: rotate(15deg); opacity: 0.7; }
.ray-5 { transform: rotate(30deg); }

/* Vine decorations */
.vine {
  position: absolute;
  width: 60px;
  height: 200px;
  border-radius: 0 0 30px 30px;
  border: 2px solid rgba(34, 197, 94, 0.15);
  border-top: none;
}

.vine-left {
  top: 0;
  left: 15%;
  animation: vineSwing 6s ease-in-out infinite;
  transform-origin: top center;
}

.vine-right {
  top: 0;
  right: 20%;
  height: 160px;
  animation: vineSwing 8s ease-in-out infinite reverse;
  transform-origin: top center;
}

@keyframes vineSwing {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--neon-jungle);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-badge-icon {
  font-size: 1.1rem;
}

.hero-title {
  font-family: 'Passion One', cursive;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  background: var(--gradient-monkey);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 540px;
}

.hero-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 36px;
}

.hero-legal-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.legal-x {
  color: var(--tropical-orange);
  font-weight: 700;
  font-size: 0.75rem;
}

.legal-check {
  font-size: 0.9rem;
}

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

/* Monkey character */
.hero-monkey {
  position: absolute;
  right: 8%;
  bottom: 10%;
  z-index: 1;
}

.monkey-character {
  position: relative;
}

.monkey-emoji {
  font-size: 8rem;
  animation: monkeyFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

@keyframes monkeyFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.monkey-bananas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banana {
  position: absolute;
  font-size: 2rem;
  animation: bananaOrbit linear infinite;
}

.b1 { animation-duration: 6s; }
.b2 { animation-duration: 8s; animation-delay: -2s; }
.b3 { animation-duration: 10s; animation-delay: -4s; }

@keyframes bananaOrbit {
  0% { transform: rotate(0deg) translateX(80px) rotate(0deg); opacity: 0.6; }
  50% { opacity: 0.9; }
  100% { transform: rotate(360deg) translateX(80px) rotate(-360deg); opacity: 0.6; }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-jungle);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.45);
}

.btn-glow {
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 4px 40px rgba(34, 197, 94, 0.5), 0 0 60px rgba(34, 197, 94, 0.2); }
}

.btn-secondary {
  background: var(--glass-bg);
  color: #fff;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--leaf-green);
  color: var(--leaf-green);
}

.btn-fullscreen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-smooth);
}

.btn-fullscreen:hover {
  background: rgba(255,255,255,0.1);
  color: var(--leaf-green);
  border-color: var(--leaf-green);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ================================================
   SECTION COMMON
   ================================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--banana-yellow);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.section-title {
  font-family: 'Passion One', cursive;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================
   GAME SECTION
   ================================================ */
.game-section {
  padding: 100px 0;
  position: relative;
  background: 
    radial-gradient(ellipse at center, rgba(20, 83, 45, 0.15) 0%, transparent 60%),
    var(--jungle-black);
}

.game-wrapper {
  max-width: 950px;
  margin: 0 auto;
}

.game-frame-container {
  position: relative;
  width: 100%;
  padding-top: 62.5%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.game-frame-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: var(--gradient-jungle);
  opacity: 0.15;
  z-index: 0;
  filter: blur(20px);
}

.game-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: var(--radius-xl);
}

.game-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.game-info-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.features-section {
  padding: 100px 0;
  position: relative;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
    var(--dark-earth);
}

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

.feature-item {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

.feature-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-green);
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.feature-icon {
  font-size: 1.8rem;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ================================================
   EXPERIENCE SECTION
   ================================================ */
.experience-section {
  padding: 120px 0;
  position: relative;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(250, 204, 21, 0.06) 0%, transparent 50%),
    var(--jungle-black);
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
}

.exp-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.exp-circle-1 {
  inset: 0;
  border-color: rgba(34, 197, 94, 0.15);
  animation: circleRotate 20s linear infinite;
}

.exp-circle-2 {
  inset: 15%;
  border-color: rgba(250, 204, 21, 0.15);
  animation: circleRotate 15s linear infinite reverse;
}

.exp-circle-3 {
  inset: 30%;
  border-color: rgba(212, 175, 55, 0.2);
  animation: circleRotate 10s linear infinite;
}

@keyframes circleRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.exp-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  filter: drop-shadow(0 0 30px rgba(250, 204, 21, 0.3));
  animation: monkeyFloat 4s ease-in-out infinite;
}

.experience-text .section-tag {
  text-align: left;
}

.experience-text .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.experience-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 20px;
}

.experience-text .btn {
  margin-top: 16px;
}

/* ================================================
   RESPONSIBLE GAMING BANNER
   ================================================ */
.responsible-banner {
  padding: 60px 0;
  background: var(--deep-forest);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.responsible-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.responsible-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.responsible-text {
  flex: 1;
  min-width: 280px;
}

.responsible-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.responsible-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--dark-earth);
  border-top: 1px solid var(--glass-border);
  padding: 70px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-logo {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: #fff;
}

.footer-logo strong {
  color: var(--leaf-green);
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 12px;
}

.footer-domain {
  font-size: 0.8rem;
  color: var(--gold-accent);
  font-weight: 600;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--leaf-green);
  padding-left: 4px;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* ================================================
   PAGE HERO (INNER PAGES)
   ================================================ */
.page-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: 
    radial-gradient(ellipse at center, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
    var(--jungle-black);
  border-bottom: 1px solid var(--glass-border);
}

.page-hero-title {
  font-family: 'Passion One', cursive;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================
   PAGE CONTENT
   ================================================ */
.page-content-section {
  padding: 80px 0 100px;
  background: var(--jungle-black);
}

.content-block {
  margin-bottom: 48px;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

.content-block p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 14px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block a {
  color: var(--leaf-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-block a:hover {
  color: var(--neon-jungle);
}

.styled-list {
  padding-left: 0;
  margin: 16px 0;
}

.styled-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.styled-list li:last-child {
  border-bottom: none;
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--leaf-green);
  border-radius: 50%;
}

.styled-list li strong {
  color: rgba(255,255,255,0.85);
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-form-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 24px;
}

.form-group:last-of-type {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--leaf-green);
  background: rgba(34, 197, 94, 0.05);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-info-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--leaf-green);
  font-weight: 500;
}

.contact-info-card a:hover {
  color: var(--neon-jungle);
}

/* ================================================
   RESPONSIVE SYSTEM
   ================================================ */

/* Tablet */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .experience-content {
    gap: 50px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 100px 40px 80px;
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding-top: 100px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-legal {
    justify-content: center;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-monkey {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
    text-align: center;
  }
  
  .monkey-emoji {
    font-size: 5rem;
  }
  
  .experience-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .experience-visual {
    max-width: 280px;
    order: -1;
  }
  
  .experience-text {
    text-align: center;
  }
  
  .experience-text .section-tag,
  .experience-text .section-title {
    text-align: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
  
  .mobile-header {
    display: block;
  }
  
  .main-content {
    margin-left: 0;
  }
  
  .hero {
    padding: 90px 20px 60px;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .hero-rays {
    width: 300px;
    height: 300px;
    right: -10%;
    top: -10%;
  }
  
  .section-container {
    padding: 0 20px;
  }
  
  .game-section {
    padding: 60px 0;
  }
  
  .game-frame-container {
    border-radius: var(--radius-lg);
    padding-top: 75%;
  }
  
  .game-iframe {
    border-radius: var(--radius-lg);
  }
  
  .game-controls {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .features-section {
    padding: 60px 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-item {
    padding: 28px 20px;
  }
  
  .experience-section {
    padding: 60px 0;
  }
  
  .exp-emoji {
    font-size: 3.5rem;
  }
  
  .responsible-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .page-hero {
    padding: 100px 0 40px;
  }
  
  .page-content-section {
    padding: 50px 0 70px;
  }
  
  .contact-form-wrap {
    padding: 24px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-legal {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  
  .monkey-emoji {
    font-size: 4rem;
  }
  
  .banana { display: none; }
  
  .section-title {
    font-size: 1.8rem;
  }
}

/* ================================================
   ANIMATION STATES
   ================================================ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.anim-fade-in {
  opacity: 0;
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.95);
}