/* =========================
GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#050505;
  color:#fff;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}

section{
  padding:120px 8%;
  position:relative;
}

.container{
  max-width:1300px;
  margin:auto;
}
.container.header-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    vertical-align: middle;
}



/* SCROLLBAR */

::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-thumb{
  background:#f13737;
  border-radius:20px;
}

/* =========================
HEADER
========================= */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:22px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(12px);
  z-index:999;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 4px;
}

.logo h2{
  font-family:'Bebas Neue',sans-serif;
  font-size:48px;
  letter-spacing:2px;
}

nav{
  display:flex;
  gap:35px;
}

nav a{
  color:#fff;
  font-weight:500;
  position:relative;
}

nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-7px;
  width:0%;
  height:2px;
  background:#f13737;
  transition:0.4s ease;
}

nav a:hover::after{
  width:100%;
}

.book-btn{
  padding:14px 30px;
  background:#f13737;
  color:#fff;
  border-radius:50px;
  font-weight:700;
  box-shadow:0 0 20px rgb(255 0 0 / 40%);
  transition:0.4s ease;
}

.book-btn:hover{
  transform:translateY(-5px);
}

.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
  color:#fff;
}

/* =========================
HERO
========================= */

.hero{
	min-height:100vh;
	padding-top:120px;
	background:
	linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.75)),
	url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?q=80&w=1800&auto=format&fit=crop');
	background-size:cover;
	background-position:center;
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center;
	position:relative;
}

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:radial-gradient(circle at top, rgba(0,255,136,0.18), transparent 60%);
  top:0;
  left:0;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:850px;
}

.tag{
  display:inline-block;
  padding:12px 24px;
  border-radius:50px;
  background:rgb(0 0 0 / 10%);
  border:1px solid #f13737;
  color:#fff;
  margin-bottom:30px;
  font-size:14px;
  letter-spacing:1px;
}

.hero h1{
  font-family:'Bebas Neue',sans-serif;
  font-size:130px;
  line-height:1;
  letter-spacing:4px;
  margin-bottom:25px;
  text-shadow:0 0 35px rgb(255 0 0 / 40%);
}

.hero h1 span{
  color:#f13737;
}

.hero p{
  color:#ccc;
  font-size:18px;
  line-height:1.9;
  max-width:700px;
  margin:auto;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  padding:16px 36px;
  border-radius:50px;
  font-weight:700;
  transition:0.4s ease;
  display:inline-block;
}

.primary-btn{
  background:#f13737;
  color:#fff;
  box-shadow:0 0 25px rgb(255 0 0 / 50%);
}

.secondary-btn{
  border:1px solid #fff;
  color:#fff;
}

.primary-btn:hover,
.secondary-btn:hover{
  transform:translateY(-5px);
}

.stats{
padding:70px 8%;
background:#000;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.stat-box{
background:#101010;
padding:40px 20px;
border-radius:25px;
text-align:center;
border:1px solid rgba(255,255,255,0.06);
transition:0.4s ease;
}

.stat-box:hover{
transform:translateY(-10px);
border-color:#f13737;
}

.stat-box h2{
font-size:60px;
font-family:'Bebas Neue',sans-serif;
color:#f13737;
margin-bottom:10px;
}

.stat-box p{
color:#aaa;
}

/* =========================
SECTION TITLE
========================= */

.section-title{
  text-align:center;
  margin-bottom:30px;
}

.section-title h2{
  font-family:'Bebas Neue',sans-serif;
  font-size:70px;
  letter-spacing:3px;
  margin-bottom:15px;
}

.section-title p{
  max-width:700px;
  margin:auto;
  line-height:1.8;
  color:#aaa;
}

/* =========================
LIVE SLOTS
========================= */

.slots{
  background:#0b0b0b;
}

.slot-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.slot-card{
  background:#101010;
  padding:40px 30px;
  border-radius:25px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.06);
  transition:0.4s ease;
}

.slot-card:hover{
  transform:translateY(-10px);
  border-color:#f13737;
  box-shadow:0 0 30px rgb(255 0 0 / 20%);
}

.slot-card h3{
  font-size:35px;
  font-family:'Bebas Neue',sans-serif;
  margin-bottom:10px;
}

.slot-card p{
  color:#bbb;
  margin-bottom:20px;
}

.slot-card span{
  padding:10px 20px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  display:inline-block;
}

.available span{
  background:#fff;
  color:#000;
}

.booked span{
  background:red;
  color:#fff;
}

/* =========================
ABOUT
========================= */

.container.about-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  background:#050505;
}

.about-img img{
  border-radius:30px;
  box-shadow:0 0 30px rgba(0,255,136,0.2);
  height:100%;
  object-fit:cover;
}

.about-content h2{
  font-family:'Bebas Neue',sans-serif;
  font-size:70px;
  margin-bottom:25px;
  letter-spacing:3px;
}

.about-content p{
  color:#bbb;
  line-height:1.9;
  margin-bottom:20px;
}

.features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:35px;
}

.feature-box{
  background:#121212;
  padding:22px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.06);
  transition:0.4s ease;
}

.feature-box:hover{
  border-color:#f13737;
  transform:translateY(-5px);
}

.feature-box i{
  color:#f13737;
  margin-right:10px;
}

/* =========================
FACILITIES
========================= */

.facilities{
  background:#0b0b0b;
}

.facility-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.facility-card{
  background:#101010;
  padding:50px 25px;
  text-align:center;
  border-radius:25px;
  border:1px solid rgba(255,255,255,0.06);
  transition:0.4s ease;
}

.facility-card:hover{
  transform:translateY(-10px);
  border-color:#f13737;
  box-shadow:0 0 30px rgba(0,255,136,0.2);
}

.facility-card i{
  font-size:45px;
  color:#f13737;
  margin-bottom:20px;
}

.facility-card h3{
  font-size:28px;
  font-family:'Bebas Neue',sans-serif;
}

/* =========================
TOURNAMENT
========================= */

.tournament{
  background:#050505;
}

.tournament-box{
  background:
  linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.8)),
  url('https://images.pexels.com/photos/37604739/pexels-photo-37604739.jpeg') center/cover;
  padding:80px;
  border-radius:35px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.08);
}

.tournament-box h2{
  font-size:90px;
  font-family:'Bebas Neue',sans-serif;
  margin-bottom:20px;
  letter-spacing:4px;
}

.tournament-box p{
  max-width:700px;
  margin:auto;
  line-height:1.9;
  color:#ddd;
  margin-bottom:35px;
}

/* =========================
PRICING
========================= */

.pricing{
  background:#0b0b0b;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.price-card{
  background:#101010;
  padding:45px 35px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.06);
  text-align:center;
  transition:0.4s ease;
}

.price-card:hover{
  transform:translateY(-10px);
  border-color:#f13737;
  box-shadow:0 0 30px rgba(0,255,136,0.2);
}

.price-card h3{
  font-size:35px;
  font-family:'Bebas Neue',sans-serif;
  margin-bottom:20px;
}

.price{
  font-size:55px;
  font-weight:700;
  color:#f13737;
  margin-bottom:30px;
}

.price-card ul{
  list-style:none;
  margin-bottom:35px;
}

.price-card ul li{
  margin-bottom:15px;
  color:#bbb;
}

.premium{
  border:2px solid #f13737;
  transform:scale(1.05);
}

/* =========================
GALLERY
========================= */

.gallery{
  background:#050505;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.gallery-grid img{
  height:320px;
  object-fit:cover;
  border-radius:25px;
  transition:0.4s ease;
}

.gallery-grid img:hover{
  transform:scale(1.04);
  box-shadow:0 0 30px rgba(0,255,136,0.25);
}

/* =========================
VIDEOS
========================= */

.videos{
  background:#0b0b0b;
}

.video-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-grid video{
  width:100%;
	height:auto;
	border:none;
	border-radius:25px;
	overflow:hidden;
	box-shadow:0 0 25px rgba(0,255,136,0.15);
}

/* =========================
REVIEWS
========================= */

.reviews{
  background:#050505;
}

.review-card{
  background:#101010;
  padding:40px;
  border-radius:25px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.06);

  padding:55px 35px;
min-height:280px;
display:flex;
flex-direction:column;
justify-content:center;
}
.review-card{
padding:55px 35px;
min-height:280px;
display:flex;
flex-direction:column;
justify-content:center;
}

.review-card img{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:50%;
  margin:auto;
  margin-bottom:20px;
  border:3px solid #f13737;
}

.review-card h3{
  font-size:28px;
  margin-bottom:15px;
  font-family:'Bebas Neue',sans-serif;
}

.review-card p{
  color:#bbb;
  line-height:1.8;
}

/* =========================
MAP
========================= */

.map iframe{
  width:100%;
  height:500px;
  border:none;
  border-radius:25px;
}

/* =========================
CONTACT
========================= */

.contact{
  background:#0b0b0b;
}

form{
  max-width:950px;
gap:25px;
  margin:auto;
  display:flex;
  flex-direction:column;
}

form input,
form textarea,
form select{
  width:100%;
  background:#101010;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  color:#fff;
  outline:none;

  padding:22px;
font-size:17px;
}

form textarea{
  height:180px;
  resize:none;
}

form button{
  padding:18px;
  border:none;
  background:#f13737;
  color:#fff;
  font-weight:700;
  border-radius:50px;
  cursor:pointer;
  font-size:17px;
  transition:0.4s ease;
}

form button:hover{
  transform:translateY(-5px);
}

/* =========================
FOOTER
========================= */

footer{
  padding:60px 20px;
  text-align:center;
  background:#000;
  border-top:1px solid rgba(255,255,255,0.05);
}

footer h2{
  font-family:'Bebas Neue',sans-serif;
  font-size:55px;
  margin-bottom:15px;
}

footer p{
  color:#888;
  margin-bottom:25px;
}

.socials{
  display:flex;
  justify-content:center;
  gap:20px;
}

.socials a{
  width:50px;
  height:50px;
  background:#101010;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:0.4s ease;
}

.socials a:hover{
  background:#f13737;
  color:#000;
  transform:translateY(-5px);
}

/* =========================
WHATSAPP
========================= */

.whatsapp{
  position:fixed;
  right:25px;
  bottom:25px;
  width:65px;
  height:65px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  color:#fff;
  z-index:999;
  box-shadow:0 0 20px rgba(37,211,102,0.5);
}

/* =========================
BOOKING POPUP
========================= */

.booking-popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.8);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:20px;
}

.booking-popup.active{
  display:flex;
}

.popup-box{
  width:100%;
  max-width:550px;
  background:#101010;
  padding:40px;
  border-radius:30px;
  position:relative;
  border:1px solid rgba(255,255,255,0.08);
}

.popup-box h2{
  font-family:'Bebas Neue',sans-serif;
  font-size:45px;
  margin-bottom:25px;
  text-align:center;
}

.popup-box form{
  max-width:100%;
}

.popup-box input,
.popup-box textarea,
.popup-box select{
  width:100%;
  padding:16px 18px;
  background:#050505;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:15px;
  color:#fff;
  margin-bottom:18px;
  outline:none;
}

.popup-box textarea{
  height:140px;
  resize:none;
}

.popup-box button{
  width:100%;
  padding:18px;
  background:#f13737;
  border:none;
  border-radius:50px;
  font-weight:700;
  font-size:17px;
  cursor:pointer;
  transition:0.4s ease;
}

.popup-box button:hover{
  transform:translateY(-5px);
}

.close-popup{
  position:absolute;
  right:18px;
  top:18px;
  width:45px;
  height:45px;
  border-radius:50%;
  background:#f13737;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:22px;
}

.facility-card,
.price-card,
.slot-card,
.review-card{
box-shadow:0 0 20px rgba(0,255,136,0.05);
}

section.map-and-contact .map-sec-details{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #050505;
}
.socials a i {
    font-size: 24px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

  .slot-grid,
  .facility-grid,
  .pricing-grid,
  .gallery-grid,
  .video-grid{
    grid-template-columns:1fr;
  }
  .container.about-container{
  	grid-template-columns:1fr;
  }

  .hero h1{
    font-size:80px;
  }

}

@media(max-width:768px){

  header{
    padding:15px 5%;
  }

  .menu-toggle{
    display:block;
  }

  nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#050505;
    flex-direction:column;
    padding:25px;
    gap:20px;
    display:none;
    border-top:1px solid rgba(255,255,255,0.08);
  }

  nav.active{
    display:flex;
    height: 100vh;
  }

  .book-btn{
    display:none;
  }

  .hero h1{
    font-size:60px;
  }

  .section-title h2,
  .about-content h2{
    font-size:50px;
  }

  .features{
    grid-template-columns:1fr;
  }

  .tournament-box{
    padding:50px 25px;
  }

  .tournament-box h2{
    font-size:55px;
  }

  section{
    padding:90px 5%;
  }

  .logo h2{
    font-size:30px;
  }

  .popup-box{
    padding:30px 20px;
  }
  .container.header-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    max-width: 100%;
    min-width: 100%;
}

.stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

section.map-and-contact .map-sec-details{
    grid-template-columns: repeat(2, 1fr);
}

}

@media(max-width:500px){

  .hero h1{
    font-size:48px;
  }

  .section-title h2{
    font-size:42px;
  }

  .about-content h2{
    font-size:42px;
  }

  .tournament-box h2{
    font-size:42px;
  }

  .price{
    font-size:42px;
  }

  .logo img{
    width:55px;
    height:55px;
  }

}