:root {
  --primary: #1D3DAD;
  --primary-dark: #0f2470;
  --primary-light: #2a4fd4;
  --accent: #3b6ff0;
  --dark: #0a0a0a;
  --darker: #050505;
  --light: #ffffff;
  --gray: #8a8a8a;
  --dirt: #c4611a;
  --turf: #2d8a39;
  --gold: #f0c040;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Jost', 'Futura PT', 'Futura', sans-serif;
  background: var(--darker);
  color: var(--light);
  overflow-x: hidden;
  cursor: default;
}

.custom-cursor {
  width: 24px; height: 24px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease, border-color 0.15s ease;
  mix-blend-mode: difference;
}
.custom-cursor.hover { transform: scale(2); border-color: var(--gold); }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(20px);
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 30px rgba(29,61,173,0.3);
}
.nav-logo img { height: 50px; transition: height 0.4s ease; }
.navbar.scrolled .nav-logo img { height: 36px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--light); text-decoration: none; font-weight: 500;
  font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--primary); color: white !important;
  padding: 0.6rem 1.5rem; border-radius: 4px;
  font-weight: 700 !important; transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--primary-light) !important; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(29,61,173,0.5); }
.nav-cta::after { display: none !important; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.mobile-toggle span { width: 28px; height: 2px; background: white; transition: all 0.3s; }

/* ============ HERO ============ */
.hero {
  height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; background: var(--darker);
}
.hero-video-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.18; z-index: 0; pointer-events: none;
}
#hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-content {
  position: relative; z-index: 2; text-align: center;
  opacity: 0; animation: heroFadeIn 1.5s ease 0.5s forwards;
}
@keyframes heroFadeIn { to { opacity: 1; } }
.hero-logo {
  width: min(500px, 80vw); margin-bottom: 2rem;
  filter: drop-shadow(0 0 40px rgba(29,61,173,0.6));
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(29,61,173,0.6)); }
  50% { filter: drop-shadow(0 0 60px rgba(29,61,173,0.9)); }
}
.hero-tagline {
  font-size: clamp(1rem, 3vw, 1.4rem); letter-spacing: 6px;
  text-transform: uppercase; color: var(--gray); margin-bottom: 1rem; font-weight: 300;
}
.hero-title { font-size: clamp(2rem, 6vw, 4.5rem); font-weight: 900; text-transform: uppercase; line-height: 1.1; margin-bottom: 2rem; }
.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--primary); color: white; padding: 1rem 2.5rem;
  font-size: 1.1rem; font-weight: 700; text-decoration: none;
  text-transform: uppercase; letter-spacing: 2px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.hero-cta:hover { background: var(--primary-light); transform: scale(1.05); }
.hero-cta::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s;
}
.hero-cta:hover::before { left: 100%; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s ease-in-out infinite; }
.scroll-indicator svg { width: 30px; height: 30px; fill: none; stroke: var(--primary); stroke-width: 2; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============ SECTION STYLES ============ */
section { padding: 6rem 2rem; position: relative; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { font-size: 0.85rem; letter-spacing: 4px; text-transform: uppercase; color: var(--primary); font-weight: 600; margin-bottom: 0.5rem; }
.section-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; text-transform: uppercase; line-height: 1.1; }
.section-line { width: 60px; height: 3px; background: var(--primary); margin: 1.5rem auto; }

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--primary); padding: 3rem 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  position: relative; overflow: hidden;
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-number { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; line-height: 1; }
.stat-label { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; margin-top: 0.5rem; }

/* ============ FACILITY SHOWCASE — HORIZONTAL SCROLL ============ */
.facility-showcase { background: var(--dark); overflow: hidden; }

.showcase-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 2rem 2rem;
  scrollbar-width: none;
  cursor: grab;
}
.showcase-track::-webkit-scrollbar { display: none; }
.showcase-track.grabbing { cursor: grabbing; }

.showcase-card {
  flex: 0 0 auto;
  width: 380px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.showcase-card:hover { transform: translateY(-8px); }
.showcase-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.showcase-card:hover img { transform: scale(1.08); }
.showcase-card-info {
  background: linear-gradient(to top, rgba(5,5,5,1) 0%, rgba(5,5,5,0.85) 60%, transparent 100%);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
}
.showcase-card-info h3 {
  font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.showcase-card-info p {
  font-size: 0.85rem; color: var(--gray);
  margin-top: 0.25rem; line-height: 1.4;
}

.showcase-nav {
  display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem;
}
.showcase-nav button {
  width: 44px; height: 44px;
  border-radius: 50%; border: 2px solid rgba(29,61,173,0.4);
  background: transparent; color: var(--light);
  font-size: 1.2rem; cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.showcase-nav button:hover { border-color: var(--primary); background: var(--primary); }

/* ============ PITCHING GAME ============ */
.game-section {
  background: linear-gradient(180deg, var(--darker) 0%, #0d1a3d 50%, var(--darker) 100%);
  text-align: center; padding: 6rem 2rem;
}
.game-wrapper { max-width: 500px; margin: 0 auto; position: relative; }

.strike-zone {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px; aspect-ratio: 3/4; max-width: 320px;
  margin: 2rem auto; padding: 12px;
  border: 3px solid var(--primary); border-radius: 4px;
  position: relative; background: rgba(29,61,173,0.05);
}
.strike-zone::before {
  content: ''; position: absolute; bottom: -40px; left: 50%;
  transform: translateX(-50%); width: 0; height: 0;
  border-left: 50px solid transparent; border-right: 50px solid transparent;
  border-top: 20px solid var(--dirt);
}

.home-plate { width: 100px; height: 30px; margin: 3rem auto 1rem; position: relative; }
.home-plate::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 6px; background: white;
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.zone-cell {
  background: rgba(29,61,173,0.15); border: 1px solid rgba(29,61,173,0.3);
  border-radius: 4px; cursor: crosshair; transition: all 0.15s;
  position: relative; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; color: transparent; user-select: none;
  overflow: hidden;
}
.zone-cell:hover {
  background: rgba(29,61,173,0.4); border-color: var(--primary);
  box-shadow: 0 0 15px rgba(29,61,173,0.3);
}
.zone-cell.hit { background: rgba(45,138,57,0.4); border-color: var(--turf); color: var(--turf); }
.zone-cell.miss { animation: missShake 0.4s ease; background: rgba(200,30,30,0.3); border-color: #c81e1e; color: #c81e1e; }
.zone-cell.locked { pointer-events: none; opacity: 0.5; }

/* Baseball throw animation */
.pitch-ball {
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #ddd);
  box-shadow: 0 0 10px rgba(255,255,255,0.6), inset -2px -2px 4px rgba(0,0,0,0.15);
  z-index: 10;
  pointer-events: none;
}
.pitch-ball::before {
  content: '';
  position: absolute;
  top: 3px; left: 5px;
  width: 10px; height: 14px;
  border: 1.5px solid #c81e1e;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-30deg);
}
.pitch-ball.animate-pitch {
  animation: throwBall 0.35s cubic-bezier(0.2, 0, 0.2, 1) forwards;
}
@keyframes throwBall {
  0% { bottom: -60px; left: 50%; transform: translateX(-50%) scale(2.5); opacity: 1; }
  70% { opacity: 1; transform: translateX(-50%) scale(1); }
  100% { bottom: var(--target-y); left: var(--target-x); transform: translateX(-50%) scale(0.6); opacity: 0; }
}

.zone-cell.hit-flash { animation: hitFlash 0.5s ease; }
@keyframes hitFlash {
  0% { transform: scale(1); }
  30% { transform: scale(1.2); background: rgba(45,138,57,0.8); box-shadow: 0 0 30px rgba(45,138,57,0.6); }
  100% { transform: scale(1); }
}
@keyframes missShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.game-score {
  font-size: 1.1rem; margin-top: 1rem;
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.game-score span { font-weight: 700; }
.game-score .strikes-val { color: var(--turf); }
.game-score .balls-val { color: #c81e1e; }

.game-message {
  font-size: 1.5rem; font-weight: 800; margin-top: 1rem;
  min-height: 2rem; text-transform: uppercase; letter-spacing: 2px;
}

.game-reset {
  margin-top: 1.5rem; padding: 0.7rem 2rem;
  background: transparent; border: 2px solid var(--primary);
  color: var(--light); font-family: inherit; font-size: 0.9rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.game-reset:hover { background: var(--primary); }

.game-instructions { font-size: 0.9rem; color: var(--gray); margin-top: 1rem; line-height: 1.6; }

.game-rules {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  max-width: 360px; margin: 1.5rem auto 0;
  font-size: 0.8rem; color: var(--gray); text-align: left;
}
.game-rules div {
  padding: 0.4rem 0.6rem;
  background: rgba(29,61,173,0.08);
  border-radius: 4px;
  border-left: 3px solid;
}
.game-rules .rule-hit { border-color: var(--turf); }
.game-rules .rule-miss { border-color: #c81e1e; }
.game-rules .rule-corner { border-color: var(--gold); }
.game-rules .rule-goal { border-color: var(--primary); }

/* Accuracy Meter */
.accuracy-meter {
  position: relative; width: 280px; height: 36px;
  margin: 1.5rem auto 0.5rem;
  background: rgba(29,61,173,0.1); border: 2px solid rgba(29,61,173,0.3);
  border-radius: 18px; overflow: hidden; display: none;
}
.accuracy-meter.active { display: block; }
.meter-zones {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex;
}
.meter-zone-miss-l, .meter-zone-miss-r {
  flex: 1; background: rgba(200,30,30,0.25);
}
.meter-zone-ok-l, .meter-zone-ok-r {
  background: rgba(29,61,173,0.2);
}
.meter-zone-perfect {
  background: rgba(45,138,57,0.35);
  box-shadow: inset 0 0 10px rgba(45,138,57,0.3);
}
.meter-needle {
  position: absolute; top: 2px; bottom: 2px; width: 4px;
  background: white; border-radius: 2px;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  left: 0%; transition: none; z-index: 2;
}
.meter-label {
  font-size: 0.75rem; color: var(--gray); text-align: center;
  margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 1px;
  display: none;
}
.meter-label.active { display: block; }
.zone-cell.selected {
  background: rgba(29,61,173,0.5); border-color: var(--gold);
  box-shadow: 0 0 20px rgba(29,61,173,0.4), 0 0 6px rgba(218,165,32,0.4);
}

/* ============ AMENITIES ============ */
.amenities { background: var(--darker); }
.amenities-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.amenity-card {
  background: linear-gradient(145deg, rgba(29,61,173,0.08), rgba(29,61,173,0.02));
  border: 1px solid rgba(29,61,173,0.15); border-radius: 8px;
  padding: 2rem; transition: all 0.4s ease; position: relative; overflow: hidden;
}
.amenity-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: var(--primary); transition: height 0.4s ease;
}
.amenity-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(29,61,173,0.2); }
.amenity-card:hover::before { height: 100%; }
.amenity-icon { margin-bottom: 1.2rem; text-align: center; }
.amenity-icon svg { width: 40px; height: 40px; fill: white; }
.amenity-icon img { width: 40px; height: 40px; filter: brightness(0) invert(1); }
.amenity-card h3 { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; text-align: center; }
.amenity-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ============ VIDEO TOUR ============ */
.video-tour { background: var(--dark); text-align: center; }
.video-container {
  max-width: 900px; margin: 0 auto; position: relative;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 2px solid rgba(29,61,173,0.3);
}
.video-container video { width: 100%; display: block; }

/* Video play button overlay */
.video-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  background: rgba(29,61,173,0.85);
  border: 3px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: all 0.3s ease;
}
.video-play-btn:hover {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 40px rgba(29,61,173,0.6);
}
.video-play-btn svg {
  width: 36px; height: 36px;
  fill: white;
  margin-left: 4px;
}
.video-play-btn.hidden { opacity: 0; pointer-events: none; transition: opacity 0.3s; }

/* ============ RAPSODO SECTION ============ */
.rapsodo-section {
  background: linear-gradient(135deg, var(--darker), #0d1a3d); overflow: hidden;
}
.rapsodo-content {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.rapsodo-visual { position: relative; text-align: center; }

/* Rapsodo data ticker */
.rapsodo-data-feed {
  margin-bottom: 2rem;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(29,61,173,0.15);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.data-row.visible { opacity: 1; transform: translateY(0); }
.data-label { color: var(--gray); text-transform: uppercase; letter-spacing: 1px; font-size: 0.7rem; }
.data-value { font-weight: 800; font-size: 1.1rem; font-variant-numeric: tabular-nums; }
.data-value.speed { color: #4ade80; }
.data-value.spin { color: var(--accent); }
.data-value.break-val { color: var(--gold); }
.data-value.eff { color: #f472b6; }
.data-bar {
  height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px;
  margin-top: 0.3rem; overflow: hidden;
}
.data-bar-fill {
  height: 100%; border-radius: 2px;
  width: 0%; transition: width 0.8s ease;
}
.data-bar-fill.speed-bar { background: linear-gradient(90deg, #22c55e, #4ade80); }
.data-bar-fill.spin-bar { background: linear-gradient(90deg, var(--primary), var(--accent)); }
.data-bar-fill.break-bar { background: linear-gradient(90deg, #d97706, var(--gold)); }
.data-bar-fill.eff-bar { background: linear-gradient(90deg, #db2777, #f472b6); }
.data-pitch-type {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  background: rgba(29,61,173,0.2);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.rapsodo-badge {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 3px solid var(--primary);
  border-radius: 8px;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  position: relative;
}
.rapsodo-badge::before {
  content: 'POWERED BY';
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--darker);
  padding: 0 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gray);
}
.rapsodo-tagline {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--gray);
  font-style: italic;
}
.rapsodo-text h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800;
  text-transform: uppercase; margin-bottom: 1.5rem; line-height: 1.2;
}
.rapsodo-text p { color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.05rem; }
.rapsodo-features { list-style: none; }
.rapsodo-features li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; color: var(--gray); }
.rapsodo-features li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; background: var(--primary); border-radius: 50%;
}

/* ============ OFFERINGS ============ */
.offerings { background: var(--darker); }
.offerings-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.offering-card {
  background: linear-gradient(180deg, rgba(29,61,173,0.1), transparent);
  border: 1px solid rgba(29,61,173,0.2); border-radius: 8px;
  padding: 2.5rem; text-align: center; transition: all 0.4s;
}
.offering-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 50px rgba(29,61,173,0.25); }
.offering-card h3 { font-size: 1.3rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.offering-card p { color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.offering-cta {
  display: inline-block; padding: 0.6rem 1.8rem;
  border: 2px solid var(--primary); color: var(--light);
  text-decoration: none; font-weight: 600; font-size: 0.85rem;
  letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s;
}
.offering-cta:hover { background: var(--primary); color: white; }

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  text-align: center; padding: 6rem 2rem; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  animation: ctaGlow 8s ease-in-out infinite;
}
@keyframes ctaGlow { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(5%,5%); } }
.cta-section h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; text-transform: uppercase; margin-bottom: 1rem; position: relative; }
.cta-section p { font-size: 1.2rem; opacity: 0.85; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }
.cta-button {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: white; color: var(--primary-dark);
  padding: 1.2rem 3rem; font-size: 1.1rem; font-weight: 800;
  text-decoration: none; text-transform: uppercase; letter-spacing: 2px;
  border-radius: 4px; transition: all 0.3s; position: relative; overflow: hidden;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.cta-button svg { width: 20px; height: 20px; fill: var(--primary-dark); }

/* ============ LOCATION ============ */
.location-section { background: var(--dark); }
.location-content {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.location-info h3 { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
.location-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.location-detail svg { width: 24px; height: 24px; fill: var(--primary); flex-shrink: 0; margin-top: 2px; }
.location-detail p { color: var(--gray); line-height: 1.6; }
.location-detail a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
.location-detail a:hover { color: var(--light); }
.reveal-phone {
  background: none; border: 1px solid var(--accent); color: var(--accent);
  padding: 0.4rem 1rem; border-radius: 4px; font-family: inherit;
  font-size: 0.95rem; cursor: pointer; transition: all 0.3s;
}
.reveal-phone:hover { background: var(--accent); color: white; }
.location-map { border-radius: 8px; overflow: hidden; border: 2px solid rgba(29,61,173,0.2); aspect-ratio: 4/3; }
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* ============ FOOTER ============ */
footer {
  background: var(--darker); border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 2rem 1.5rem; text-align: center;
}
footer img { height: 40px; margin-bottom: 1.5rem; opacity: 0.7; }
footer p { color: var(--gray); font-size: 0.85rem; }

/* ============ SCROLL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  width: 40px; height: 40px; background: none;
  border: 2px solid rgba(255,255,255,0.3); color: white;
  font-size: 1.5rem; cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.lightbox-close:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 70%; height: 100vh;
    background: rgba(5,5,5,0.98); flex-direction: column; justify-content: center;
    transition: right 0.4s ease; padding: 2rem;
  }
  .nav-links.open { right: 0; }
  .mobile-toggle { display: flex; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .showcase-card { width: 300px; }
  .showcase-card img { height: 220px; }
  .showcase-card-info { opacity: 1; }
  .rapsodo-content { grid-template-columns: 1fr; text-align: center; }
  .location-content { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .custom-cursor { display: none; }
  .game-rules { grid-template-columns: 1fr; }
}
