*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#090909;
  color:white;
  overflow-x:hidden;
}

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

#loader h1{
 font-size:2.5rem;
  color:#b366ff;
  text-shadow:0 0 20px #8a2be2;
}

#loader p{
  margin-top:15px;
  color:#ffd54f;
  font-size:1rem;
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding-top:80px;
}

.banner{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
}

.hero-content{
  position:relative;
  z-index:2;
  padding:20px;
}

.profile{
  width:180px;
  height:180px;
  border-radius:50%;
  object-fit:cover;
  border:5px solid #9d4edd;
  box-shadow:0 0 35px #9d4edd;
  margin-bottom:20px;
}

.hero h1{
  font-size:4rem;
  font-weight:800;
}

.hero h2{
  color:#ffd54f;
  margin:15px 0;
}

.hero p{
  color:#ddd;
  margin-bottom:30px;
}

.buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.buttons a{
  text-decoration:none;
  color:white;
  background:#7b2cff;
  padding:15px 30px;
  border-radius:50px;
  transition:.3s;
  font-weight:700;
}

.buttons a:hover{
  transform:translateY(-5px);
  background:#a855f7;
  box-shadow:0 0 25px #a855f7;
}

@media(max-width:768px){

.hero h1{
font-size:2.6rem;
}

.profile{
width:130px;
height:130px;
}

.buttons{
flex-direction:column;
}

.buttons a{
width:100%;
}

}
.business{
    padding:80px 20px;
    text-align:center;
    background:#0d0d0d;
}

.business h2{
    font-size:2.5rem;
    margin-bottom:20px;
    color:#ffffff;
}

.business p{
    max-width:700px;
    margin:15px auto;
    color:#cfcfcf;
    line-height:1.8;
}

.sponsor-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin:40px 0;
}

.card{
    width:250px;
    padding:30px;
    border-radius:18px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.12);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 30px #8a2be2;
}

.card h3{
    font-size:1.6rem;
    margin-bottom:10px;
}

.business-btn{
    display:inline-block;
    margin-top:30px;
    padding:16px 34px;
    border-radius:50px;
    background:#7b2cff;
    color:white;
    text-decoration:none;
    font-weight:700;
    transition:transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.business-btn:hover{
    transform:translateY(-8px) scale(1.05);
    background:#a855f7;
    box-shadow:0 0 25px #a855f7;
}
.sponsor-link{
    text-decoration:none;
    color:white;
    display:block;
}

.sponsor-link:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 0 35px #8a2be2;
}

.code{
    margin:20px auto;
    padding:12px;
    width:180px;
    border-radius:12px;
    background:#7b2cff;
    color:white;
    font-weight:800;
    letter-spacing:2px;
    text-align:center;
}

.visit{
    margin-top:20px;
    font-weight:700;
    color:#b366ff;
}
/* ========================= */
/* FEATURED VIDEO */
/* ========================= */

.video-container{
    position:relative;
    width:100%;
    max-width:900px;
    margin:40px auto;
    aspect-ratio:16/9;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 0 35px rgba(123,44,255,.45);
}

.video-container iframe{
    width:100%;
    height:100%;
    border:none;
}

/* ========================= */
/* HERO BUTTONS */
/* ========================= */

.hero-buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-buttons .business-btn{
    margin-top:0;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer{
    padding:60px 20px;
    text-align:center;
    background:#080808;
    border-top:1px solid rgba(255,255,255,.08);
}

footer h2{
    color:#b366ff;
    margin-bottom:20px;
}

.footer-text{
    margin-top:25px;
    color:#888;
    font-size:.9rem;
}

/* ========================= */
/* CARD IMPROVEMENTS */
/* ========================= */

.card{
    backdrop-filter:blur(10px);
}

.card:hover{
    transform:translateY(-10px) scale(1.03);
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

.hero-buttons{
    flex-direction:column;
}

.hero-buttons .business-btn{
    width:100%;
}

.video-container{
    margin-top:25px;
}

}
/* ========================= */
/* NAVIGATION BAR */
/* ========================= */

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

.logo{
    color:white;
    font-size:1.5rem;
    font-weight:800;
    text-decoration:none;
}

.logo img{
    height:60px;
    width:auto;
    display:block;
}
.nav-links{
    display:flex;
    gap:25px;
}

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

.nav-links a:hover{
    color:#b366ff;
}

@media(max-width:768px){

.navbar{
    flex-direction:column;
    padding:15px;
}

.nav-links{
    margin-top:10px;
    flex-wrap:wrap;
    justify-content:center;
}

}

/* ========================= */
/* PREMIUM NAVBAR */
/* ========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:rgba(10,10,10,.75);
    backdrop-filter:blur(15px);
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
    color:#fff;
    font-size:1.6rem;
    font-weight:800;
    text-decoration:none;
    transition:.3s;
}

.logo:hover{
    color:#b366ff;
}

.nav-links{
    display:flex;
    gap:28px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    position:relative;
}

.nav-links a:hover{
    color:#b366ff;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#b366ff;
    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

@media(max-width:900px){

.navbar{
    flex-direction:column;
    gap:15px;
    padding:15px;
}

.nav-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

}

#particles{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
    pointer-events:none;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
    margin-top:40px;
}

.video-grid iframe{
    width:100%;
    aspect-ratio:16/9;
    border:none;
    border-radius:18px;
    box-shadow:0 0 25px rgba(123,44,255,.4);
}

/* ========================= */
/* DONATE PAGE */
/* ========================= */

.donate-card{
    max-width:700px;
    margin:60px auto;
    padding:40px;
    border-radius:20px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    text-align:center;
}

.donate-card h2{
    color:#b366ff;
    margin-bottom:20px;
}

.donate-card p{
    color:#ddd;
    line-height:1.8;
}

.cashapp-tag{
    margin:25px auto;
    display:inline-block;
    padding:15px 30px;
    border-radius:50px;
    background:#7b2cff;
    color:#fff;
    font-size:1.2rem;
    font-weight:700;
    letter-spacing:1px;
    box-shadow:0 0 20px rgba(123,44,255,.5);
}
