:root{
    --gold:#D4AF37;
    --black:#0A0A0A;
    --dark:#151515;
    --teal:#00D4C7;
    --white:#F5F5F5;
}

 html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

  body{
    background:
        radial-gradient(
            circle at top,
            rgba(0,212,199,.08),
            transparent 40%
        ),
        var(--black);

    color:var(--white);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 5%;
    background:rgba(21,21,21,.95);
    border-bottom:2px solid var(--gold);

    position:sticky;
    top:0;
    z-index:1000;

    backdrop-filter:blur(10px);
}

.logo{
    width:140px;
    filter:drop-shadow(0 0 12px rgba(0,212,199,.35));
}

.nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-weight:bold;
    transition:.3s ease;
}

.nav a:hover{
    color:var(--teal);
}

.hero{
    text-align:center;
    padding:100px 20px;
    background:linear-gradient(
        180deg,
        #0A0A0A,
        #151515
    );
}

.eyebrow{
    color:var(--teal);
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:15px;
}

.hero h1{
    font-size:4rem;
    color:var(--gold);
}

.hero h2{
    font-size:2rem;
    margin-bottom:20px;
}

.tagline{
    color:var(--teal);
    margin-bottom:20px;
}

.hero-text{
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

.hero-buttons{
    margin-top:30px;
}

.btn{
    display:inline-block;
    padding:12px 24px;
    margin:10px;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
}

.gold{
    background:var(--gold);
    color:black;
    font-weight:bold;
}

.teal{
    background:var(--teal);
    color:black;
    font-weight:bold;
}

.gold:hover{
    box-shadow:0 0 20px rgba(212,175,55,.4);
}

.teal:hover{
    box-shadow:0 0 20px rgba(0,212,199,.4);
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:60px 5%;
}

.card{
    background:var(--dark);
    padding:25px;
    border:1px solid var(--gold);
    border-radius:10px;
}

.section{
    padding:100px 5%;
    text-align:center;
}

.section h2{
    margin-bottom:20px;
    color:var(--gold);
    font-size:2.2rem;
}

.section p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

footer{
    text-align:center;
    padding:25px;
    border-top:1px solid var(--gold);
}
.small-hero{
    padding:70px 20px;
}

.form-section{
    padding:50px 5%;
    display:flex;
    justify-content:center;
}

.register-form{
    width:100%;
    max-width:700px;
    background:var(--dark);
    padding:30px;
    border:1px solid var(--gold);
    border-radius:12px;
}

.register-form h2{
    color:var(--gold);
    margin:25px 0 15px;
}

.register-form label{
    display:block;
    margin-top:15px;
    color:var(--teal);
    font-weight:bold;
}

.register-form input,
.register-form select{
    width:100%;
    padding:12px;
    margin-top:6px;
    border-radius:6px;
    border:1px solid #333;
    background:#0f0f0f;
    color:white;
}

.register-form button{
    border:none;
    margin-top:30px;
    cursor:pointer;
}

.card{
    transition:all .3s ease;
}

.card:hover{
    transform:translateY(-5px);
    border-color:var(--teal);
    box-shadow:0 0 20px rgba(0,212,199,.25);
}

.btn{
    transition:all .3s ease;
}

.btn:hover{
    transform:translateY(-2px);
}

.card h3{
    color:var(--gold);
    margin-bottom:10px;
}

.card p{
    line-height:1.6;
}

.hero{
    min-height:60vh;
    display:flex;
    flex-direction:column;
    justify-content:center;

    background:
        radial-gradient(
            circle at center,
            rgba(0,212,199,.12),
            transparent 60%
        );
}

     .card h3{
    font-size:1.3rem;
}

.card{
    min-height:150px;
}

@media (max-width: 768px){
    .nav{
        flex-direction:column;
        gap:20px;
    }

    .nav nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .nav a{
        margin:5px;
        font-size:.9rem;
    }

    .hero h1{
        font-size:3rem;
    }

    .hero h2{
        font-size:1.5rem;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .logo{
        width:120px;
    }
}
.champion-showcase{
    max-width:900px;
    margin:80px auto;
    padding:50px;
    text-align:center;

    border:2px solid var(--gold);
    border-radius:15px;

    background:linear-gradient(
        180deg,
        rgba(212,175,55,.08),
        rgba(0,0,0,.3)
    );

    box-shadow:0 0 30px rgba(212,175,55,.15);
}

.champion-showcase h2{
    color:var(--gold);
    font-size:3rem;
    margin-bottom:20px;
}

.champion-showcase .season{
    color:var(--teal);
    font-size:1.5rem;
}

.champion-showcase .champion{
    font-size:3rem;
    margin:25px 0;
    font-weight:bold;
}

.footer{
    text-align:center;
    padding:60px 20px;
    margin-top:80px;
    border-top:2px solid var(--gold);
    background:#111;
}

.footer-logo{
    width:90px;
    margin-bottom:20px;
}

.footer h3{
    color:var(--gold);
    margin-bottom:10px;
}

.footer-links{
    margin:25px 0;
}

.footer-links a{
    color:white;
    text-decoration:none;
    margin:0 10px;
}

.footer-links a:hover{
    color:var(--teal);
}

.copyright{
    opacity:.7;
    font-size:.9rem;
}
.btn{
    transition:all .3s ease;
}

.btn:hover{
    transform:translateY(-3px);
}

.gold:hover{
    box-shadow:0 0 20px rgba(212,175,55,.4);
}

.teal:hover{
    box-shadow:0 0 20px rgba(0,212,199,.4);
}

.section{
    position:relative;
}

.section::after{
    content:"";
    display:block;
    width:120px;
    height:2px;
    background:var(--gold);
    margin:40px auto 0;
}

.founder-banner{
    max-width:900px;
    margin:70px auto;
    padding:50px 30px;
    text-align:center;
    border:2px solid var(--gold);
    border-radius:16px;
    background:linear-gradient(
        180deg,
        rgba(212,175,55,.12),
        rgba(0,212,199,.05)
    );
    box-shadow:0 0 35px rgba(212,175,55,.18);
}

.founder-banner h2{
    color:var(--gold);
    font-size:2.8rem;
    margin-bottom:20px;
}

.founder-banner p{
    max-width:750px;
    margin:15px auto;
    line-height:1.8;
}

.register-hero{
    background:
        radial-gradient(circle at center, rgba(212,175,55,.15), transparent 55%),
        radial-gradient(circle at top, rgba(0,212,199,.12), transparent 45%);
}

.register-form{
    box-shadow:0 0 35px rgba(0,212,199,.12);
}

.register-form input:focus,
.register-form select:focus{
    outline:none;
    border-color:var(--teal);
    box-shadow:0 0 10px rgba(0,212,199,.25);
}

.hero h2{
    color:var(--teal);
    font-size:2rem;
    margin:20px 0;
    text-transform:uppercase;
    letter-spacing:2px;
}

.hero-buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}