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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#050505;
  color:white;
  overflow-x:hidden;
}

.noise{
  position:fixed;
  inset:0;
  opacity:.03;
  background-image:url('https://grainy-gradients.vercel.app/noise.svg');
  pointer-events:none;
  z-index:999;
}

.loader{
  position:fixed;
  inset:0;
  background:#000;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.loader h1{
  font-size:70px;
}

.loader span{
  color:#ff5c00;
}

.navbar{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 7%;
  z-index:1000;
  backdrop-filter:blur(18px);
  background:rgba(0,0,0,.25);
}

.logo{
  font-size:30px;
  font-weight:800;
}

.logo span{
  color:#ff5c00;
}

nav{
  display:flex;
  gap:35px;
}

nav a{
  color:white;
  text-decoration:none;
  transition:.3s;
}

nav a:hover{
  color:#ff5c00;
}

.nav-btn,
.primary-btn,
.secondary-btn,
.banner-content button{
  padding:15px 28px;
  border:none;
  border-radius:16px;
  cursor:pointer;
  font-weight:600;
  transition:.4s;
}

.nav-btn,
.primary-btn,
.banner-content button{
  background:#ff5c00;
  color:white;
}

.secondary-btn{
  background:transparent;
  border:1px solid rgba(255,255,255,.4);
  color:white;
}

.hero{
  height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  padding:0 7%;
  overflow:hidden;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to right,rgba(0,0,0,.88),rgba(0,0,0,.5));
}

.hero-content{
  position:relative;
  z-index:5;
  max-width:780px;
}

.hero-tag{
  color:#ff5c00;
  letter-spacing:5px;
  font-weight:600;
  margin-bottom:20px;
}

.hero h1{
  font-size:110px;
  line-height:1;
  margin-bottom:25px;
}

.hero h1 span{
  color:#ff5c00;
}

.hero-desc{
  color:#ccc;
  line-height:1.9;
  font-size:19px;
  max-width:650px;
}

.hero-buttons{
  margin-top:40px;
  display:flex;
  gap:20px;
}

.primary-btn:hover,
.secondary-btn:hover,
.nav-btn:hover,
.banner-content button:hover{
  transform:translateY(-6px) scale(1.03);
}

.glow{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
}

.glow1{
  width:300px;
  height:300px;
  background:#ff5c00;
  top:10%;
  right:5%;
  opacity:.3;
}

.glow2{
  width:250px;
  height:250px;
  background:#ff0000;
  bottom:10%;
  right:20%;
  opacity:.15;
}

.ticker{
  padding:22px 0;
  background:#ff5c00;
  overflow:hidden;
  white-space:nowrap;
}

.ticker-track{
  display:inline-block;
  font-size:24px;
  font-weight:700;
  animation:ticker 20s linear infinite;
}

@keyframes ticker{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }
}

.collections,
.products,
.stats{
  padding:120px 7%;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:58px;
}

.section-title p{
  color:#aaa;
  margin-top:15px;
}

.collection-grid,
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.collection-card,
.product-card{
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:30px;
  height:340px;
  padding:30px;
  display:flex;
  align-items:end;
  backdrop-filter:blur(12px);
  transition:.5s;
}

.collection-card:hover,
.product-card:hover{
  transform:translateY(-15px);
}

.card-glow{
  position:absolute;
  width:250px;
  height:250px;
  background:#ff5c00;
  border-radius:50%;
  filter:blur(100px);
  opacity:.18;
  top:-100px;
  right:-80px;
}

.collection-card h3,
.product-card h3{
  position:relative;
  z-index:2;
  font-size:30px;
}

.product-image{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#151515,#232323);
}

.product-card p{
  position:relative;
  z-index:2;
  margin-top:10px;
  color:#ffb48d;
}

.stadium-banner{
  margin:0 7%;
  border-radius:40px;
  overflow:hidden;
  position:relative;
  height:500px;
  background:url('https://images.unsplash.com/photo-1546519638-68e109498ffc?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
}

.banner-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.6);
}

.banner-content{
  position:relative;
  z-index:3;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:0 80px;
}

.banner-content h2{
  font-size:70px;
  max-width:700px;
}

.banner-content p{
  color:#ddd;
  margin:20px 0 35px;
  font-size:18px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
}

.stat-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  padding:50px;
  border-radius:30px;
  text-align:center;
  backdrop-filter:blur(12px);
}

.stat-card h2{
  color:#ff5c00;
  font-size:58px;
}

.footer{
  margin-top:80px;
  background:#0a0a0a;
  padding:80px 7%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.footer ul{
  list-style:none;
}

.footer p,
.footer li{
  color:#aaa;
  margin-top:12px;
}

@media(max-width:900px){

  nav{
    display:none;
  }

  .hero h1{
    font-size:58px;
  }

  .section-title h2{
    font-size:42px;
  }

  .banner-content{
    padding:40px;
  }

  .banner-content h2{
    font-size:42px;
  }

}
