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

body{
   font-family:'Poppins', sans-serif;
    background:#050816;
    color:#ffffff;
    line-height:1.6;
    padding-top:90px;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* NAVBAR */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 70px;

    background:rgba(5,8,22,0.88);

    backdrop-filter:blur(14px);

    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;

    border-bottom:1px solid rgba(255,255,255,0.08);

    box-shadow:0 10px 40px rgba(0,0,0,0.55);
}

.logo img{
    width:180px;
    height:auto;
    display:block;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    color:#e6e6e6;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    position:relative;
    transition:0.3s;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:#ffcc00;
    transition:0.3s;
}

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

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

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

/* ADD THIS HERE */
.menu-toggle{
    display:none;
    font-size:28px;
    color:white;
    cursor:pointer;
}


/* HERO SECTION */

/* PREMIUM HERO */

.hero{
       min-height:100vh;
       isolation:isolate;
    background:
    linear-gradient(rgba(3,7,18,0.82),
rgba(3,7,18,0.88)),
    url('../images/stadium.gif');

    background-size:cover;
    background-position:center;

    position:relative;

    display:flex;
    align-items:center;

    overflow:hidden;
}
.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#f5b941;
    border-radius:50%;
    filter:blur(180px);
    opacity:0.18;

    top:-100px;
    right:-100px;

    z-index:-1;
}

.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-left{
    flex:1;
}

.hero-right{
    flex:1;
    text-align:center;
}

.hero-right img{
    width:100%;
    max-width:550px;
    animation:floatPlayer 4s ease-in-out infinite;
}

.league-badge{
    display:inline-block;
    background:#ff5a1f;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
}

.hero h1{
    font-size:clamp(42px,7vw,78px);
    line-height:1.1;
    font-weight:900;
    margin-bottom:25px;
}

.hero p{
    font-size:22px;
    color:#dddddd;
    margin-bottom:40px;
    max-width:600px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-outline{
    display:inline-block;
    padding:18px 42px;
    border:2px solid #ffffff;
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:0.4s;
}

.btn-outline:hover{
    background:white;
    color:black;
}

@keyframes floatPlayer{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}
/* PREMIUM BUTTON */

.btn{
    display:inline-block;
    padding:18px 42px;
    background:linear-gradient(135deg,#ff7b00,#f5b941);
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    letter-spacing:1px;
    transition:0.4s;
    box-shadow:0 12px 35px rgba(245,185,65,0.35);
}

.btn:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(255,102,0,0.55);
}


/* STATS SECTION */

.stats-section{
    background:#07122f;
    padding:50px 0;
}

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

.stat-box{
    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);

    padding:40px 20px;

    border-radius:24px;

    text-align:center;

    transition:0.4s;
}

.stat-box:hover{
    transform:translateY(-10px);
}

.stat-box h3{
    font-size:48px;
    color:#ffcc00;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
    color:#dddddd;
}

/* Sections */
section{
    padding:110px 0;
}

h2{
    text-align:center;
    margin-bottom:55px;
    font-size:54px;

    background:linear-gradient(to right,#ffffff,#f5b941);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    font-weight:800;
    text-transform:uppercase;
    position:relative;
    letter-spacing:1px;
}

h2::after{
    content:'';
    width:100px;
    height:4px;
    background:#ffcc00;
    display:block;
    margin:18px auto 0;
    border-radius:20px;
}

.about-preview p{
    text-align:center;
    max-width:800px;
    margin:auto;
    font-size:18px;
}

/* Players */
.player-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

/* PREMIUM PLAYER CARDS */
.player-card{
    position:relative;
    height:350px;

    background:linear-gradient(
    180deg,
    rgba(16,22,40,0.95),
    rgba(8,12,22,1));

    border:1px solid rgba(255,255,255,0.08);

    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
}

.player-card::before{
    content:'';
    position:absolute;
    inset:0;

    background:linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    transparent 60%);

    z-index:1;
}

.player-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 25px rgba(245,185,65,0.15);
}

.player-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    
    transition:0.5s;
}

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

.player-card h3,
.player-card p{
    position:relative;
    z-index:2;
}

.player-card h3{
    position:absolute;
    bottom:55px;
    left:25px;
    font-size:28px;
    margin:0;
}
.player-card p{
    position:absolute;
    bottom:20px;
    left:25px;
    color:#ffcc00;
}

/* Gallery */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:16px;
    transition:0.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* CTA */
.cta-section{
    background:#111111;
    text-align:center;
}

.cta-section h2{
    margin-bottom:25px;
}

/* Footer */
footer{
    background:#000000;
    padding:30px 0;
    text-align:center;
}

.footer-content h3{
    color:#ffcc00;
    margin-bottom:10px;
}

/* Mobile Responsive */
@media(max-width:768px){
    
.logo img{
    width:140px;
}

.navbar{
    padding:18px 20px;
    flex-wrap:wrap;
}

.menu-toggle{
    display:block;
}

.nav-links{
    width:100%;
    flex-direction:column;
    text-align:center;
    gap:20px;

    max-height:0;
    overflow:hidden;

    transition:0.4s ease;
}

.nav-links.active{
    max-height:300px;
    margin-top:20px;
}

.hero h1{
    font-size:38px;
    line-height:1.2;
}

.hero p{
    font-size:18px;
}

h2{
    font-size:30px;
}

}



/* Page Banner */

.page-banner{
    height:50vh;
    background:url('../images/about-banner.jpg') center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.page-banner::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
}

.banner-content{
    position:relative;
    z-index:1;
}

.banner-content h1{
    font-size:60px;
    color:#ffffff;
}

/* About Page */

.about-page p{
    text-align:center;
    max-width:900px;
    margin:20px auto;
    font-size:18px;
    color:#dddddd;
}

/* Mission Section */

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

.mission-card{
    background:#151515;
    padding:40px;
    border-radius:10px;
    text-align:center;
    transition:0.3s;
}

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

.mission-card h3{
    color:#ffcc00;
    margin-bottom:20px;
}

/* Tournament Format */

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

.format-box{
    background:#111111;
    padding:30px;
    border-radius:10px;
    text-align:center;
}

.format-box h3{
    color:#ffcc00;
    margin-bottom:15px;
}

/* Mobile */

@media(max-width:768px){

.banner-content h1{
    font-size:40px;
}

}

/* Players Page */

.players-banner{
    background:url('../images/players-banner.jpg') center/cover no-repeat;
}

.players-page{
    padding:80px 0;
}

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

.player-box{
    background:#151515;
    border-radius:12px;
    overflow:hidden;
    transition:0.4s;
}

.player-box:hover{
    transform:translateY(-10px);
}

.player-box img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.player-info{
    padding:25px;
}

.player-info h3{
    margin-bottom:15px;
    color:#ffcc00;
    font-size:24px;
}

.player-info p{
    margin-bottom:10px;
    color:#dddddd;
}

/* Gallery Banner */

.gallery-banner{
    background:url('../images/gallery-banner.jpg') center/cover no-repeat;
}

/* Gallery Page */

.gallery-page{
    padding:80px 0;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:12px;
    background:#111111;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.4s;
    display:block;
}

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

/* Register Banner */

.register-banner{
    background:url('../images/register-banner.jpg') center/cover no-repeat;
}

/* Register Section */

.register-section{
    padding:80px 0;
}

.register-box{
    max-width:700px;
    margin:auto;
    background:#151515;
    padding:50px;
    border-radius:12px;
}

.register-box h2{
    text-align:center;
    margin-bottom:35px;
}

.form-group{
    margin-bottom:25px;
}

.form-group input,
.form-group select{
    width:100%;
    padding:15px;
    border:none;
    border-radius:6px;
    background:#222222;
    color:white;
    font-size:16px;
    outline:none;
}

.form-group input::placeholder{
    color:#bbbbbb;
}

.submit-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:6px;
    background:#e60000;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
}

.submit-btn:hover{
    background:#ffcc00;
    color:black;
}

/* Mobile */

@media(max-width:768px){

.register-box{
    padding:30px 20px;
}

}
/* =========================
   PREMIUM FOOTER
========================= */

.main-footer{
    background:#050816;
    color:white;
    margin-top:80px;
}

/* Top Footer */

.footer-top{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:70px 0;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:80px;
}

/* Headings */

.footer-column h3{
    font-size:22px;
    margin-bottom:25px;
    color:#ffffff;
}

/* Links */

.footer-column ul{
    list-style:none;
}

.footer-column ul li{
    margin-bottom:15px;
}

.footer-column ul li a{
    color:#d7d7d7;
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
}

.footer-column ul li a:hover{
    color:#ff5a1f;
    padding-left:5px;
}

/* Social Icons */

.social-icons{
    display:flex;
    gap:15px;
    margin-top:10px;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:white;
    color:#10296b;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:0.3s;
    font-size:18px;
}

.social-icons a:hover{
    background:#ff5a1f;
    color:white;
    transform:translateY(-5px);
}

/* Bottom Footer */

.footer-bottom{
    background:#0b1428;
    text-align:center;
    padding:22px 10px;
}

.footer-bottom p{
    color:white;
    font-size:15px;
}

/* Mobile */

@media(max-width:768px){

.footer-top{
    grid-template-columns:1fr;
    gap:50px;
    text-align:center;
}

.social-icons{
    justify-content:center;
}

}
/* PREMIUM SECTIONS */

.about-preview{
    background:#081120;
}

.featured-players{
    background:#0b0b0b;
}

.gallery-preview{
    background:#081120;
}

.cta-section{
    background:
    linear-gradient(rgba(0,0,0,0.75),
    rgba(0,0,0,0.75)),
    url('../images/cta-bg.jpg');

    background-size:cover;
    background-position:center;
}
/* SMOOTH ANIMATION */

.player-card,
.gallery-grid img,
.btn,
.stat-box,
.social-icons a{
    transition:all 0.4s ease;
}
/* =========================
   PARTICIPATING TEAMS
========================= */

.teams-section{
    background:#07122f;
}

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

.team-box{
    background:#111111;
    padding:40px 20px;
    border-radius:20px;
    text-align:center;
    transition:0.4s;
}

.team-box:hover{
    transform:translateY(-10px);
}

.team-box img{
    width:120px;
    height:120px;
    object-fit:contain;
    margin-bottom:20px;
}

.team-box h3{
    font-size:22px;
}

/* =========================
   BROADCAST SECTION
========================= */

.broadcast-section{
    background:#0b0b0b;
}

.broadcast-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.broadcast-left{
    flex:1;
}

.broadcast-right{
    flex:1;
    text-align:center;
}

.broadcast-right img{
    width:100%;
    max-width:450px;
}

.broadcast-left h2{
    text-align:left;
}

.broadcast-left h2::after{
    margin-left:0;
}

.broadcast-left p{
    font-size:18px;
    color:#dddddd;
    margin-top:20px;
}

/* =========================
   SPONSOR SECTION
========================= */

.sponsor-section{
    background:#07122f;
    text-align:center;
}

.sponsor-text{
    max-width:700px;
    margin:0 auto 50px;
    font-size:18px;
    color:#dddddd;
}

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

.sponsor-card{
    background:#111111;
    padding:40px 30px;
    border-radius:20px;
    transition:0.4s;
}

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

.sponsor-card i{
    font-size:45px;
    color:#ffcc00;
    margin-bottom:20px;
}

.sponsor-card h3{
    margin-bottom:15px;
}

.sponsor-btn{
    margin-top:50px;
}

/* =========================
   EVENTS & MEDIA
========================= */

.media-section{
    background:#0b0b0b;
}

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

.media-card{
    background:#111111;
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
}

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

.media-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.media-content{
    padding:25px;
}

.media-content h3{
    margin-bottom:15px;
    font-size:24px;
}

.media-content p{
    color:#cccccc;
}

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

@media(max-width:768px){

.broadcast-wrapper{
    flex-direction:column;
    text-align:center;
}

.broadcast-left h2{
    text-align:center;
}

.broadcast-left h2::after{
    margin:auto;
}

}
body::before{
    content:'';

    position:fixed;

    width:700px;
    height:700px;

    background:#f5b941;

    border-radius:50%;

    filter:blur(220px);

    opacity:0.05;

    top:-200px;
    left:-200px;

    z-index:-1;
}