:root {
  --bg: #000;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f6f8fb;
  --muted: #aeb9c8;
  --green: #20ff9f;
  --blue: #27d9ff;
  --gold: #ffcf4a;
  --red: #ff356d;
  --violet: #8f5cff;
  --pink: #ff4fd8;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.58);
  --mouse-x: 50vw;
  --mouse-y: 30vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(32, 255, 159, 0.08), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(39, 217, 255, 0.07), transparent 24%),
    linear-gradient(135deg, #000 0%, #050505 48%, #000 100%);
  font-family: "Manrope", system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(32,255,159,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39,217,255,0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 80%, transparent);
  animation: gridDrift 18s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(520px circle at var(--mouse-x) var(--mouse-y), rgba(32,255,159,0.09), transparent 42%);
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 72px 72px, 72px 72px; }
}

body.lightbox-lock {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: #fff;
  box-shadow: 0 0 18px rgba(32,255,159,0.7);
}

.cursor-ring {
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 1px solid rgba(32,255,159,0.75);
  transition: width 0.2s ease, height 0.2s ease, margin 0.2s ease, border-color 0.2s ease;
}

.cursor-ring.is-hovering {
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-color: rgba(255,207,74,0.9);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: flex;
  gap: 10px;
}

.loader-mark span {
  width: 12px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(var(--green), var(--blue), var(--gold));
  animation: pulseBar 0.82s infinite ease-in-out alternate;
  transform-origin: bottom;
}

.loader-mark span:nth-child(2) { animation-delay: 0.12s; }
.loader-mark span:nth-child(3) { animation-delay: 0.24s; }

@keyframes pulseBar {
  from { transform: scaleY(0.45); opacity: 0.45; }
  to { transform: scaleY(1); opacity: 1; }
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(32,255,159,0.22);
  border-radius: 8px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  transition: top 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.site-header.scrolled {
  top: 8px;
  background: rgba(0,0,0,0.93);
  border-color: rgba(32,255,159,0.42);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #05100b;
  background: linear-gradient(135deg, var(--green), var(--blue), var(--gold));
  animation: softPulse 3.6s ease-in-out infinite;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.main-nav a {
  padding: 10px 11px;
  border-radius: 8px;
  color: #dbe4ef;
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #03110a;
  background: linear-gradient(135deg, var(--green), var(--blue), var(--gold));
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--panel);
}
/* ===============================
   HERO SECTION - OPTIMIZED PART 1
==================================*/

.hero{
    position:relative;
    min-height:100vh;
    display:grid;
    align-items:center;
    overflow:hidden;
    isolation:isolate;
    padding:150px clamp(18px,5vw,70px) 90px;
    contain:layout paint;
}

.hero::before,
.hero::after{
    content:"";
    position:absolute;
    inset:-10%;
    pointer-events:none;
    z-index:-1;
    will-change:transform;
}

.hero::before{

background:
conic-gradient(
from 160deg at 72% 42%,
transparent 0 28%,
rgba(32,255,159,.18),
transparent 43% 58%,
rgba(39,217,255,.14),
transparent 72%);

opacity:.65;

animation:auroraTurn 40s linear infinite;

transform:translateZ(0);

}

.hero::after{

background:
radial-gradient(circle at 24% 36%,rgba(255,207,74,.12),transparent 22%),
radial-gradient(circle at 78% 26%,rgba(255,79,216,.10),transparent 20%);

opacity:.65;

animation:orbFloat 20s ease-in-out infinite alternate;

transform:translateZ(0);

}

.hero-video,
.hero-overlay,
.motion-lines{
position:absolute;
inset:0;
}

.hero-video{

z-index:-3;

width:100%;

height:100%;

object-fit:cover;

transform:translateZ(0) scale(1.05);

filter:contrast(1.08)
brightness(.78)
saturate(1.05);

animation:heroZoom 18s ease-in-out infinite alternate;

backface-visibility:hidden;

will-change:transform;

contain:paint;

}

@keyframes heroZoom{

from{

transform:translateZ(0) scale(1.05);

}

to{

transform:translateZ(0) scale(1.08);

}

}

.hero-overlay{

z-index:-2;

background:

linear-gradient(
90deg,
rgba(0,0,0,.94),
rgba(0,0,0,.58),
rgba(0,0,0,.88)
),

radial-gradient(
circle at 72% 32%,
rgba(32,255,159,.22),
transparent 34%
),

radial-gradient(
circle at 48% 72%,
rgba(39,217,255,.10),
transparent 36%
);

}

.video-effects,
.video-effects span{

position:absolute;

inset:0;

pointer-events:none;

}

.video-effects{

overflow:hidden;

z-index:-1;

}

.video-aura{

background:

radial-gradient(circle at 70% 38%,rgba(32,255,159,.22),transparent 24%),

radial-gradient(circle at 82% 70%,rgba(39,217,255,.12),transparent 22%),

radial-gradient(circle at 22% 74%,rgba(255,207,74,.10),transparent 24%);

opacity:.8;

animation:auraMove 18s ease-in-out infinite alternate;

will-change:transform;

}

/* PERFORMANCE */

.video-scan{

display:none;

}

.video-noise{

display:none;

}

.video-vignette{

background:

radial-gradient(circle at center,
transparent 0 42%,
rgba(0,0,0,.20) 62%,
rgba(0,0,0,.78) 100%);

}

.motion-lines{

overflow:hidden;

pointer-events:none;

z-index:-1;

}

.motion-lines span{

position:absolute;

left:-25%;

width:40%;

height:1px;

background:

linear-gradient(
90deg,
transparent,
rgba(32,255,159,.65),
transparent);

opacity:.25;

animation:lineMove 12s linear infinite;

box-shadow:0 0 8px rgba(32,255,159,.30);

will-change:transform;

}

.motion-lines span:nth-child(1){

top:28%;

}

.motion-lines span:nth-child(2){

top:51%;

animation-delay:4s;

}

.motion-lines span:nth-child(3){

top:72%;

animation-delay:8s;

}

/* ===============================
   HERO SECTION - OPTIMIZED PART 2
==================================*/

/* Floating Icons */
.sport-orbits span{
    position:absolute;
    z-index:2;
    display:grid;
    place-items:center;

    width:64px;
    height:64px;

    border-radius:50%;
    border:1px solid rgba(32,255,159,.20);

    background:rgba(0,0,0,.45);
    color:var(--gold);

    box-shadow:0 0 10px rgba(32,255,159,.18);

    animation:floatIcon 12s ease-in-out infinite;

    will-change:transform;
    backface-visibility:hidden;
}

.sport-orbits span:nth-child(1){
    top:22%;
    right:16%;
}

.sport-orbits span:nth-child(2){
    top:38%;
    right:7%;
    animation-delay:2s;
}

.sport-orbits span:nth-child(3){
    bottom:24%;
    right:18%;
    animation-delay:4s;
}

.sport-orbits span:nth-child(4){
    bottom:17%;
    left:8%;
    animation-delay:6s;
}

@keyframes floatIcon{

0%,100%{

transform:translate3d(0,0,0);

}

50%{

transform:translate3d(10px,-18px,0);

}

}

/* Hero Content */

.hero-content{

position:relative;

z-index:5;

width:min(920px,100%);

transform:translateZ(0);

will-change:transform;

}

/* Heading */

.hero-title{

margin:0;

font-family:"Rajdhani",sans-serif;

font-size:clamp(3.15rem,8vw,8.6rem);

line-height:.9;

text-transform:uppercase;

text-shadow:0 0 12px rgba(32,255,159,.18);

}

.hero-title span,
.hero-title strong{

display:block;

}

.hero-title strong{

max-width:920px;

background:linear-gradient(
100deg,
#fff 0%,
#dffcff 18%,
var(--green) 40%,
var(--blue) 60%,
var(--gold) 82%,
#fff 100%
);

background-size:200% auto;

-webkit-background-clip:text;

background-clip:text;

color:transparent;

animation:

fadeUp .8s ease,

textShine 12s linear infinite;

text-shadow:0 0 10px rgba(32,255,159,.20);

}

/* Subtitle */

.hero-subtitle{

margin-top:26px;

max-width:680px;

font-size:clamp(1.1rem,2vw,1.6rem);

font-weight:700;

color:#d9e3ee;

}

/* Buttons */

.hero-actions{

display:flex;

flex-wrap:wrap;

gap:16px;

margin-top:36px;

}

.btn{

position:relative;

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

padding:0 24px;

height:54px;

border-radius:8px;

font-weight:800;

cursor:pointer;

overflow:hidden;

transition:

transform .25s,

background .25s;

will-change:transform;

}

.btn:hover{

transform:translateY(-3px);

}

.btn.primary{

background:linear-gradient(
135deg,
var(--green),
var(--blue),
var(--gold));

background-size:180% 180%;

animation:gradientFlow 10s linear infinite;

}

.btn.ghost{

background:rgba(255,255,255,.06);

border:1px solid rgba(32,255,159,.22);

}

/* Hero Stats */

.hero-stats{

position:absolute;

right:clamp(18px,5vw,70px);

bottom:28px;

display:grid;

grid-template-columns:repeat(4,1fr);

width:min(760px,calc(100% - 36px));

background:rgba(0,0,0,.62);

border:1px solid rgba(32,255,159,.18);

border-radius:10px;

overflow:hidden;

backdrop-filter:blur(6px);

}

.hero-stats article{

padding:18px;

border-right:1px solid rgba(32,255,159,.12);

}

.hero-stats article:last-child{

border-right:none;

}

.hero-stats strong{

display:block;

font-family:"Rajdhani",sans-serif;

font-size:clamp(2rem,4vw,3rem);

color:var(--gold);

}

.hero-stats span{

font-size:.85rem;

font-weight:700;

color:var(--muted);

}

/* ===============================
   HERO OPTIMIZED - PART 3
==================================*/

/* Fade Animation */

@keyframes fadeUp{

0%{
opacity:0;
transform:translate3d(0,25px,0);
}

100%{
opacity:1;
transform:translate3d(0,0,0);
}

}

/* Aurora */

@keyframes auroraTurn{

0%{

transform:rotate(0deg) scale(1.02);

}

100%{

transform:rotate(360deg) scale(1.02);

}

}

/* Background Orb */

@keyframes orbFloat{

0%{

transform:translate3d(-15px,10px,0);

}

50%{

transform:translate3d(15px,-15px,0);

}

100%{

transform:translate3d(-15px,10px,0);

}

}

/* Aura */

@keyframes auraMove{

0%{

transform:translate3d(-15px,15px,0);

opacity:.75;

}

100%{

transform:translate3d(20px,-18px,0);

opacity:1;

}

}

/* Motion Lines */

@keyframes lineMove{

from{

transform:translateX(0);

}

to{

transform:translateX(300%);

}

}

/* Gradient Button */

@keyframes gradientFlow{

0%{

background-position:0% 50%;

}

50%{

background-position:100% 50%;

}

100%{

background-position:0% 50%;

}

}

/* Text Shine */

@keyframes textShine{

0%{

background-position:0% 50%;

}

100%{

background-position:100% 50%;

}

}

/* Universal GPU Optimization */

.hero *,
.hero::before,
.hero::after{

backface-visibility:hidden;

transform-style:preserve-3d;

}

/* Performance */

.hero img,
.hero video{

user-select:none;

-webkit-user-drag:none;

}

/* Mobile */

@media(max-width:992px){

.motion-lines{

display:none;

}

.sport-orbits span{

width:52px;
height:52px;

}

.hero-title{

font-size:clamp(2.6rem,8vw,5rem);

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.video-aura{

opacity:.45;

}

.hero::before{

opacity:.35;

}

.hero::after{

opacity:.25;

}

.hero-video{

animation:none;

transform:scale(1.04);

}

.hero-stats{

position:relative;

margin-top:40px;

right:auto;

bottom:auto;

width:100%;

}

}

@media(max-width:576px){

.sport-orbits{

display:none;

}

.hero{

padding-top:120px;

}

.hero-actions{

flex-direction:column;

}

.hero-actions .btn{

width:100%;

}

.hero-title{

line-height:1;

}

}
.section {
  position: relative;
  padding: 108px clamp(18px, 5vw, 70px);
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 0.98;
}

.glass-panel,
.feature-card,
.sport-card,
.testimonial-card,
.slot-panel,
.news-card {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}

.glass-panel::before,
.feature-card::before,
.sport-card::after,
.testimonial-card::before,
.slot-panel::before,
.news-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(135deg, rgba(32,255,159,0.55), rgba(39,217,255,0.24), rgba(255,207,74,0.45));
  transition: opacity 0.25s ease;
}

.glass-panel:hover::before,
.feature-card:hover::before,
.sport-card:hover::after,
.testimonial-card:hover::before,
.slot-panel:hover::before,
.news-card:hover::before {
  opacity: 0.5;
}

.about-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 24px;
}

.about-copy,
.feature-card,
.contact-info {
  padding: 28px;
}

.about-copy h3,
.slot-top h3,
.contact-info h3 {
  margin: 0 0 14px;
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
}

.about-copy p,
.feature-card p,
.sport-card p,
.site-footer p,
.contact-info p,
.news-card p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.72;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.sport-card,
.testimonial-card,
.news-card,
.slot-card,
.gallery-item {
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.feature-card:hover,
.sport-card:hover,
.testimonial-card:hover,
.news-card:hover {
  border-color: rgba(32,255,159,0.42);
  transform: translate3d(0, -7px, 0);
  box-shadow: 0 28px 84px rgba(0,0,0,0.68), 0 0 30px rgba(32,255,159,0.12);
}

.feature-card svg {
  color: var(--gold);
}

.sports-grid {
  display: grid;
  max-width: 1240px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.sport-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.sport-card::before,
.gallery-item::before {
  content: attr(data-sport);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  color: rgba(255,255,255,0.76);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  text-align: center;
  background:
    radial-gradient(circle at 22% 18%, rgba(32,255,159,0.22), transparent 28%),
    radial-gradient(circle at 78% 70%, rgba(39,217,255,0.14), transparent 30%),
    linear-gradient(135deg, #020202, #0b0b0b);
}

.sport-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform 0.36s ease;
}

.sport-card:hover img {
  transform: scale(1.08);
}

.sport-card-body {
  position: relative;
  z-index: 2;
  padding: 22px;
  background: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.98));
}

.sport-card span {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.sport-card h3 {
  min-height: 78px;
  margin: 10px 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.sport-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
  color: #dce7f2;
  font-size: 0.92rem;
}

.sport-card li,
.contact-info p {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 900;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-bar button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  color: var(--text);
  background: rgba(0,0,0,0.56);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.filter-bar button:hover,
.filter-bar button.active {
  color: #03110a;
  background: linear-gradient(135deg, var(--green), var(--blue), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(32,255,159,0.18);
}

.gallery-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 178px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #030303;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
}

.gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.is-visible:hover {
  border-color: rgba(32,255,159,0.48);
  transform: translate3d(0, -7px, 0);
  box-shadow: 0 26px 74px rgba(0,0,0,0.62), 0 0 26px rgba(32,255,159,0.12);
}

.gallery-item::before {
  content: attr(data-label);
  font-size: 1.35rem;
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease, opacity 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #03110a;
  background: linear-gradient(135deg, var(--green), var(--blue), var(--gold));
  font-size: 0.8rem;
  font-weight: 900;
}

.slider {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  padding: 8px 0 46px;
}

.slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.42s ease;
  will-change: transform;
}

.slide {
  flex: 0 0 calc((100% - 36px) / 3);
}

.news-card,
.testimonial-card {
  min-height: 292px;
  padding: 28px;
}

.news-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #03110a;
  background: linear-gradient(135deg, var(--red), var(--violet), var(--gold));
  font-size: 0.72rem;
  font-weight: 900;
}

.news-card time {
  display: block;
  margin: 18px 0 10px;
  color: var(--green);
  font-weight: 800;
}

.news-card h3 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.85rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--green);
}

.booking-layout,
.contact-layout {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: 360px 1fr;
  gap: 24px;
}

.booking-form,
.contact-form,
.admission-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: #d9e3ed;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--text);
  background: rgba(0,0,0,0.48);
  outline: none;
  padding: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

select option {
  color: #06100b;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(32,255,159,0.82);
  box-shadow: 0 0 0 4px rgba(32,255,159,0.1);
  transform: translateY(-2px);
}

.slot-panel {
  padding: 24px;
}

.slot-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.slot-top span,
.booking-summary {
  color: var(--muted);
  font-weight: 800;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.slot-card {
  min-height: 96px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255,255,255,0.07);
  cursor: pointer;
}

.slot-card:hover,
.slot-card.selected {
  border-color: rgba(32,255,159,0.72);
  background: rgba(32,255,159,0.12);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(32,255,159,0.14);
}

.slot-card.booked {
  color: rgba(255,255,255,0.52);
  background: rgba(255,53,109,0.12);
  cursor: not-allowed;
}

.slot-card strong,
.slot-card span {
  display: block;
}

.slot-card span {
  margin-top: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.slot-card.booked span {
  color: var(--red);
}

.admission-form {
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}

.full {
  grid-column: 1 / -1;
}

.file-input input {
  padding: 12px;
}

.testimonial-card p {
  font-size: 1.1rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--gold);
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--muted);
}

.contact-info iframe {
  width: 100%;
  height: 260px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  filter: grayscale(0.85) invert(0.9) contrast(0.88);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 28px;
  padding: 52px clamp(18px, 5vw, 70px) 26px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.78);
}

.site-footer h2 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 2.2rem;
}

.site-footer nav,
.socials {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 12px;
}

.site-footer a,
.socials a {
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.site-footer a:hover,
.socials a:hover {
  color: var(--green);
  border-color: rgba(32,255,159,0.55);
  transform: translateY(-3px);
}

.site-footer small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(0,0,0,0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin: 0;
}

.lightbox img {
  max-width: min(1120px, 100%);
  max-height: 78vh;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: var(--shadow);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lightbox img.from-next {
  opacity: 0;
  transform: translateX(18px) scale(0.98);
}

.lightbox img.from-prev {
  opacity: 0;
  transform: translateX(-18px) scale(0.98);
}

.lightbox figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: var(--text);
  font-weight: 800;
}

.lightbox figcaption small {
  color: var(--muted);
}

.lightbox button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.lightbox button:hover {
  background: rgba(32,255,159,0.16);
  transform: translateY(-2px);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
}

.lightbox-prev {
  justify-self: end;
}

.lightbox-next {
  justify-self: start;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 3000;
  max-width: min(420px, calc(100% - 44px));
  padding: 16px 18px;
  border-radius: 8px;
  color: #03110a;
  background: linear-gradient(135deg, var(--green), var(--blue), var(--gold));
  box-shadow: var(--shadow);
  font-weight: 900;
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.68s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.68s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.reveal-left {
  transform: translate3d(-46px, 0, 0);
}

.reveal.reveal-right {
  transform: translate3d(46px, 0, 0);
}

.reveal.reveal-zoom {
  transform: translate3d(0, 28px, 0) scale(0.96);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1120px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(32,255,159,0.22);
    border-radius: 8px;
    background: rgba(0,0,0,0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .sports-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .booking-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .slide {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 760px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .hero {
    min-height: 940px;
    padding: 126px 18px 220px;
  }

  .sport-orbits span {
    width: 50px;
    height: 50px;
  }

  .hero-stats {
    left: 18px;
    right: 18px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats article:nth-child(2) {
    border-right: 0;
  }

  .hero-stats article:nth-child(1),
  .hero-stats article:nth-child(2) {
    border-bottom: 1px solid rgba(32,255,159,0.12);
  }

  .section {
    padding-block: 84px;
  }

  .about-cards,
  .sports-grid,
  .gallery-grid,
  .slots-grid,
  .admission-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .slot-top {
    display: block;
  }

  .hero-actions .btn,
  .slide {
    width: 100%;
    flex-basis: 100%;
  }

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 8px;
    padding: 18px 10px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .site-footer small {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
