/*
 * Arcade Venezuela - Exact Masterpiece Replication
 */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #000000;
  --bg-card: #050608;
  
  --neon-green: #00FF66;
  --neon-purple: #A855F7;
  --neon-gold: #FFB800;
  --neon-blue: #00E1FF;
  
  --text-main: #ffffff;
  --text-muted: #8b9bb4;
  
  --font-logo: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* ----------------------------------
   Atmosphere & Lighting (The Engine)
---------------------------------- */
.site-wrapper {
  position: relative;
  min-height: 100vh;
  z-index: 1;
  background-color: var(--bg-dark);
}

.cinematic-bg {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

/* Matrix Grid Lines */
.cinematic-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(to right, rgba(0,255,102,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,255,102,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

/* Giant Portal Flares */
.flare-left {
  position: absolute;
  top: 10%; left: 0;
  width: 50vw; height: 80vh;
  background: radial-gradient(ellipse at center, rgba(0,255,102,0.15) 0%, transparent 60%);
  border-radius: 50%;
  transform: translateX(-20%);
  filter: blur(60px);
}
.flare-right {
  position: absolute;
  top: 10%; right: 0;
  width: 50vw; height: 80vh;
  background: radial-gradient(ellipse at center, rgba(168,85,247,0.15) 0%, transparent 60%);
  border-radius: 50%;
  transform: translateX(20%);
  filter: blur(60px);
}

/* Highly Reflective Wet Floor */
.reflective-floor {
  position: absolute;
  bottom: 0; left: 0; width: 100vw; height: 25vh;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
  z-index: -1;
}

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

/* ----------------------------------
   Top Header
---------------------------------- */
.site-header {
  position: absolute;
  top: 0; left: 0; width: 100%;
  height: 90px;
  z-index: 100;
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  align-items: center;
}

/* Logo Left */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo img {
  width: 40px;
  height: auto;
}
.brand-text-vertical {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text-vertical .t1 { font-family: var(--font-logo); font-size: 22px; font-weight: 700; letter-spacing: 2px; }
.brand-text-vertical .t2 { font-size: 10px; color: var(--neon-green); letter-spacing: 4px; text-transform: uppercase; }


/* Centered Menu */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-bottom: 8px;
}
.main-nav a i { font-size: 18px; }

.nav-cursos i { color: var(--neon-green); filter: drop-shadow(0 0 5px var(--neon-green)); }
.nav-tiendas i { color: var(--neon-gold); filter: drop-shadow(0 0 5px var(--neon-gold)); }
.nav-torneos i { color: var(--neon-purple); filter: drop-shadow(0 0 5px var(--neon-purple)); }
.nav-novedades i { color: var(--neon-blue); filter: drop-shadow(0 0 5px var(--neon-blue)); }

/* Active Underline */
.main-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; transition: width 0.3s;
}
.main-nav .nav-cursos.active::after, .main-nav .nav-cursos:hover::after { width: 100%; background: var(--neon-green); box-shadow: 0 0 10px var(--neon-green); }
.main-nav .nav-tiendas:hover::after { width: 100%; background: var(--neon-gold); box-shadow: 0 0 10px var(--neon-gold); }
.main-nav .nav-torneos:hover::after { width: 100%; background: var(--neon-purple); box-shadow: 0 0 10px var(--neon-purple); }
.main-nav .nav-novedades:hover::after { width: 100%; background: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue); }

/* User Profile Right */
.user-widget {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
.user-avatar-wrap {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--neon-green);
  padding: 2px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 10px rgba(0,255,102,0.3);
}
.user-avatar-wrap img { width: 100%; height: 100%; border-radius: 50%; }
.user-info { display: flex; flex-direction: column; text-align: left; }
.user-name { font-size: 13px; font-weight: 700; line-height: 1.2; }
.user-level { font-size: 11px; color: var(--text-muted); line-height: 1.2; }

/* ----------------------------------
   Hero Layout (Exact Match)
---------------------------------- */
.hero-master {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 50px;
  z-index: 10;
}

.hero-center-content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: -20px;
  width: 100%;
}

/* Immersive Slider Container */
.hero-slider-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 500px; /* Fixed height to prevent layout jumps */
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px) scale(0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  z-index: 30;
}

/* Slider Controls */
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 40;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}
.slider-nav-btn:hover {
  background: rgba(0,255,102,0.2);
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow: 0 0 20px rgba(0,255,102,0.4);
}
.slider-prev { left: -100px; }
.slider-next { right: -100px; }

.slider-pagination {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 40;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active {
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
  transform: scale(1.2);
}

/* Side-by-Side Mascots */
.mascots-sbs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 25;
}
.mascot-img-sbs {
  height: 350px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
  transition: transform 0.3s;
}
.mascot-img-sbs:hover {
  transform: translateY(-10px);
}

.mascot-single {
  height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
  margin-top: 20px;
}

.hero-center-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.hero-center-logo i { margin-bottom: 15px; }

/* ----------------------------------
   Feature Cards
---------------------------------- */
.hero-headline {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
}
.hero-headline .highlight { color: var(--neon-green); text-shadow: 0 0 15px rgba(0,255,102,0.4); }

/* Cyber Glitch Effect */
.glitch {
  animation: glitch-anim 3s infinite alternate;
}
@keyframes glitch-anim {
  0%, 90% { text-shadow: none; transform: none; }
  92% { text-shadow: 3px 0 red, -3px 0 cyan; transform: skewX(2deg); }
  94% { text-shadow: none; transform: none; }
  96% { text-shadow: -3px 0 red, 3px 0 cyan; transform: skewX(-3deg); }
  98% { text-shadow: none; transform: none; }
  100% { text-shadow: 3px 0 red, -3px 0 cyan; }
}

.hero-subheadline {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}

.btn-enter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0,255,102,0.3), inset 0 0 15px rgba(0,255,102,0.2);
  position: relative;
  overflow: hidden;
}
/* Laser Scanner Effect on Button */
.btn-enter::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(0,255,102,0.4), transparent);
  transform: skewX(-20deg);
  animation: laser-scan 3s infinite;
}
@keyframes laser-scan {
  0% { left: -100%; }
  50%, 100% { left: 200%; }
}

.btn-enter i { font-size: 20px; transition: transform 0.3s; position: relative; z-index: 2; }
.btn-enter:hover i { transform: translateX(5px); }

/* The 3D Dimensional Portal Vortex (Stargate/Animus Engine) */
.cyber-portal-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;  /* HUGE */
  height: 70vw; /* HUGE */
  max-width: 1000px;
  max-height: 1000px;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  perspective: 1200px; /* Essential for 3D depth */
}

/* Base Scene for 3D Elements */
.portal-scene {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

/* Suspended Logo inside the Portal Core */
.suspended-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) translateZ(-150px);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 50;
  animation: logo-levitate 4s ease-in-out infinite alternate;
}
.suspended-logo img {
  width: 120px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.3));
}
.suspended-logo .t1 { font-family: var(--font-logo); font-size: 52px; font-weight: 700; letter-spacing: 6px; line-height: 1; text-shadow: 0 0 20px rgba(0,255,102,0.5); }
.suspended-logo .t2 { font-size: 16px; color: var(--neon-green); letter-spacing: 8px; text-transform: uppercase; text-shadow: 0 0 10px rgba(0,255,102,0.8); }

@keyframes logo-levitate {
  0% { transform: translate(-50%, -50%) translateZ(-150px) translateY(-10px); }
  100% { transform: translate(-50%, -50%) translateZ(-150px) translateY(10px); }
}

/* =============================================
   LATERAL MASCOTS (Clean, No Effects)
   ============================================= */

.mascot-holo-wrap {
  position: fixed;
  top: 50%;
  z-index: 200;
  width: 420px;
  height: 600px;
  pointer-events: none;
}

.mascot-holo-wrap.pixel-side {
  left: 0;
  transform: translateY(-50%);
}
.mascot-holo-wrap.nova-side {
  right: 0;
  transform: translateY(-50%);
}

/* The mascot image */
.mascot-holo-wrap img.mascot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* Smooth radial fade into the dark background */
.mascot-holo-wrap.pixel-side {
  mask-image: radial-gradient(ellipse 90% 80% at 20% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 20% 50%, black 30%, transparent 75%);
}
.mascot-holo-wrap.nova-side {
  mask-image: radial-gradient(ellipse 90% 80% at 80% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 80% 50%, black 30%, transparent 75%);
}

/* Electric Sparks (High Voltage Effect) */
.electric-sparks {
  position: absolute;
  top: 50%; left: 50%;
  width: 300px; height: 300px;
  transform: translate(-50%, -50%) translateZ(-100px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.8);
  border-left: 2px solid var(--neon-gold);
  border-right: 2px solid var(--neon-blue);
  box-shadow: 0 0 20px rgba(255,255,255,0.5), inset 0 0 20px rgba(255,255,255,0.5);
  animation: spark-erratic 0.15s infinite alternate;
  mix-blend-mode: screen;
}
@keyframes spark-erratic {
  0% { transform: translate(-50%, -50%) translateZ(-100px) rotate(0deg) scale(1); opacity: 0.2; }
  100% { transform: translate(-50%, -50%) translateZ(-100px) rotate(180deg) scale(1.05); opacity: 0.8; }
}

/* The Core (The Neutral Void) */
.portal-core-void {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) translateZ(-400px);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 0 100px #000, 0 0 150px #000;
  z-index: 0;
}

/* Tunnel Rings moving down the Z-axis */
.tunnel-ring {
  position: absolute;
  top: 10%; left: 10%;
  width: 80%; height: 80%;
  border-radius: 50%;
  opacity: 0;
  transform-style: preserve-3d;
  animation: dive-in 6s linear infinite;
  transition: all 0.3s;
}

/* Hyperdrive Pulse Effect (when sliding) */
.cyber-portal-wrap.pulse .tunnel-ring {
  animation-duration: 2s;
  border-width: 10px;
}
.cyber-portal-wrap.pulse .data-fragments {
  animation-duration: 1.5s;
}

/* Splitting the ring into Green (Left) and Purple (Right) */
.tunnel-ring::before,
.tunnel-ring::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 50%;
  border-radius: 500px 0 0 500px; /* Half circle */
  border: 4px solid;
  border-right: none;
  filter: blur(4px);
}

/* Left Half: Arcade Green */
.tunnel-ring::before {
  left: 0;
  border-color: var(--neon-green);
  box-shadow: inset 20px 0 40px rgba(0,255,102,0.2), -20px 0 40px rgba(0,255,102,0.2);
}

/* Right Half: Nova Purple */
.tunnel-ring::after {
  right: 0;
  border-radius: 0 500px 500px 0;
  border-left: none;
  border-right: 4px solid var(--neon-purple);
  border-color: var(--neon-purple);
  box-shadow: inset -20px 0 40px rgba(168,85,247,0.2), 20px 0 40px rgba(168,85,247,0.2);
}

/* Staggered rings to create continuous tunnel */
.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 1.5s; }
.ring-3 { animation-delay: 3s; }
.ring-4 { animation-delay: 4.5s; }

/* 3D Z-Axis Animation (Moving into the void) */
@keyframes dive-in {
  0% { transform: translateZ(400px) scale(1.5); opacity: 0; border-width: 1px; }
  20% { opacity: 0.8; border-width: 4px; }
  80% { opacity: 0.5; }
  100% { transform: translateZ(-500px) scale(0.1) rotate(45deg); opacity: 0; border-width: 10px; }
}

/* Energy Waves (Conic gradients simulating rotating energy walls) */
.energy-walls {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%;
  transform: translateZ(-200px);
  background: conic-gradient(
    from 0deg, 
    transparent 0deg, 
    rgba(168,85,247,0.1) 90deg, 
    transparent 180deg, 
    rgba(0,255,102,0.1) 270deg, 
    transparent 360deg
  );
  animation: slow-spin 20s linear infinite;
  mask-image: radial-gradient(transparent 30%, black 70%);
  -webkit-mask-image: radial-gradient(transparent 30%, black 70%);
}

@keyframes slow-spin { 100% { transform: translateZ(-200px) rotate(360deg); } }

/* Digital Fragments (Pixels split half green, half purple) */
.data-fragments {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%;
  animation: fragment-suck 4s linear infinite;
  transform-style: preserve-3d;
}

/* Left Half Green Pixels */
.data-fragments::before {
  content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 100%;
  background-image: radial-gradient(square, var(--neon-green) 3px, transparent 3px); /* Fallback */
  background: radial-gradient(var(--neon-green) 2px, transparent 2px);
  background-size: 35px 35px;
  border-radius: 500px 0 0 500px;
}

/* Right Half Purple Pixels */
.data-fragments::after {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(var(--neon-purple) 2px, transparent 2px);
  background-size: 35px 35px;
  border-radius: 0 500px 500px 0;
}

.data-fragments.layer-2 { animation-delay: -2s; animation-duration: 6s; transform: rotate(45deg); }
.data-fragments.layer-2::before, .data-fragments.layer-2::after { background-size: 50px 50px; }

@keyframes fragment-suck {
  0% { transform: translateZ(300px) scale(1.5); opacity: 0; }
  15% { opacity: 0.8; }
  85% { opacity: 0.8; }
  100% { transform: translateZ(-600px) scale(0.1) rotate(15deg); opacity: 0; }
}

/* ----------------------------------
   Feature Cards
---------------------------------- */
.cards-section {
  position: relative;
  z-index: 20;
  padding: 0 0 60px 0;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); }

/* Glowing Top Borders */
.card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  border-top-left-radius: 20px; border-top-right-radius: 20px; opacity: 0.8;
}
.card.green::before { background: var(--neon-green); box-shadow: 0 0 20px var(--neon-green); }
.card.gold::before { background: var(--neon-gold); box-shadow: 0 0 20px var(--neon-gold); }
.card.purple::before { background: var(--neon-purple); box-shadow: 0 0 20px var(--neon-purple); }
.card.blue::before { background: var(--neon-blue); box-shadow: 0 0 20px var(--neon-blue); }

.card-icon {
  font-size: 42px;
  margin-bottom: 24px;
}
.card.green .card-icon { color: var(--neon-green); filter: drop-shadow(0 0 10px rgba(0,255,102,0.4)); }
.card.gold .card-icon { color: var(--neon-gold); filter: drop-shadow(0 0 10px rgba(255,184,0,0.4)); }
.card.purple .card-icon { color: var(--neon-purple); filter: drop-shadow(0 0 10px rgba(168,85,247,0.4)); }
.card.blue .card-icon { color: var(--neon-blue); filter: drop-shadow(0 0 10px rgba(0,225,255,0.4)); }

.card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 30px;
}

.card-arrow {
  margin-top: auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.card.green:hover .card-arrow { border-color: var(--neon-green); color: var(--neon-green); box-shadow: 0 0 10px rgba(0,255,102,0.2); }
.card.gold:hover .card-arrow { border-color: var(--neon-gold); color: var(--neon-gold); box-shadow: 0 0 10px rgba(255,184,0,0.2); }
.card.purple:hover .card-arrow { border-color: var(--neon-purple); color: var(--neon-purple); box-shadow: 0 0 10px rgba(168,85,247,0.2); }
.card.blue:hover .card-arrow { border-color: var(--neon-blue); color: var(--neon-blue); box-shadow: 0 0 10px rgba(0,225,255,0.2); }

/* ----------------------------------
   Dimensions Section
---------------------------------- */
.dimensions-section {
  position: relative;
  z-index: 20;
  padding: 40px 0 80px 0;
}

.dimensions-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Left Title Area */
.dim-title-area {
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dim-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-main);
  position: relative;
  padding-bottom: 10px;
}
.dim-title::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px;
  background: var(--neon-green); box-shadow: 0 0 5px var(--neon-green);
}
.dim-subtitle {
  font-size: 12px; color: var(--text-muted);
}

.dim-nav-arrows {
  display: flex; gap: 10px; margin-top: 10px;
}
.dim-nav-arrows button {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.dim-nav-arrows button:hover { border-color: var(--text-main); color: var(--text-main); }

/* Right Carousel Area */
.dim-carousel {
  flex-grow: 1;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  padding-bottom: 10px;
}
.dim-carousel::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.game-poster {
  min-width: 220px; height: 130px;
  border-radius: 12px;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 15px;
  transition: transform 0.3s;
}
.game-poster:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.game-poster::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.game-title {
  position: relative; z-index: 2; font-family: var(--font-logo); font-size: 16px; font-weight: 700;
  letter-spacing: 1px; text-align: center;
}
.game-title.minecraft { font-family: var(--font-body); font-weight: 800; }

/* ----------------------------------
   Responsive
---------------------------------- */
@media (max-width: 1200px) {
  .hero-mascot-img { height: 400px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .dimensions-layout { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .header-inner { display: flex; justify-content: space-between; }
  .main-nav { display: none; }
  .hero-mascot-img { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 24px; }
}
