* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Arial, sans-serif;
}


body {

    background: #030303;
    color: white;
    overflow-x: hidden;

}



/* Background */

.bg {

    position: fixed;
    inset: 0;
    z-index: -1;

    background:

        radial-gradient(circle at 20% 20%, #ffd70035, transparent 30%),
        radial-gradient(circle at 80% 70%, #ff990035, transparent 35%);


    animation: bg 8s infinite alternate;

}



@keyframes bg {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }

}




/* Navbar */

nav {

    position: absolute;
    top: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 8%;

}



.logo {

    font-size: 32px;
    font-weight: 900;

    background: linear-gradient(45deg,
            #fff,
            #ffd700);

    -webkit-background-clip: text;

    color: transparent;

}



nav a {

    color: #ddd;
    text-decoration: none;
    margin-left: 25px;

}




/* Hero */


.hero {

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 120px 20px 50px;

    perspective: 1200px;

}




.hero-box {

    max-width: 900px;

    transform-style: preserve-3d;

    transition: .2s;

}




.badge {

    display: inline-block;

    padding: 10px 25px;

    border-radius: 50px;

    background: #ffffff12;

    border: 1px solid #ffd70055;

    color: #ffd700;

    margin-bottom: 25px;

}




.hero h1 {

    font-size: 70px;

    line-height: 1.1;


    background:

        linear-gradient(45deg,
            white,
            #ffd700,
            #ff9900);


    -webkit-background-clip: text;

    color: transparent;


}



.hero p {

    font-size: 20px;

    color: #aaa;

    margin-top: 25px;

}




.btn {


    display: inline-block;

    margin-top: 40px;

    padding: 18px 55px;

    border-radius: 50px;


    background:

        linear-gradient(45deg,
            #ffd700,
            #ff9900);



    color: #000;

    font-weight: 800;

    text-decoration: none;


    box-shadow:

        0 0 30px #ffd700;


    transition: .4s;

}



.btn:hover {

    transform: scale(1.1);

}



/* Floating Cards */

.floating {

    position: absolute;

    width: 120px;

    height: 120px;


    background:

        linear-gradient(145deg,
            #ffd700,
            #ff9900);



    border-radius: 30px;


    box-shadow:

        0 0 50px #ffd700;


    animation: float 5s infinite;


}



.one {

    top: 25%;
    left: 8%;

}



.two {

    bottom: 20%;
    right: 8%;

    animation-delay: 2s;

}



@keyframes float {


    50% {

        transform:

            translateY(-60px) rotate(180deg);


    }

}




/* Sections */


.section {

    padding: 0px 8%;

}



.title {

    text-align: center;

    font-size: 45px;

    margin-bottom: 50px;

}




.cards {

    display: flex;

    gap: 30px;

    justify-content: center;

    flex-wrap: wrap;

}



.card {


    width: 320px;

    padding: 35px;


    background:

        rgba(255, 255, 255, .08);



    border:

        1px solid #ffffff22;


    border-radius: 25px;


    backdrop-filter: blur(15px);


    transition: .5s;


}




.card h2 {

    color: #ffd700;

    margin-bottom: 15px;

}



.card p {

    color: #bbb;

}




.vip {


    margin-top: 70px;

    padding: 60px;


    text-align: center;


    border-radius: 35px;


    background:

        linear-gradient(135deg,
            #1d1500,
            #050505);



    border: 1px solid #ffd700;



}




.vip h2 {

    font-size: 45px;

    color: #ffd700;

}




footer {

    text-align: center;

    padding: 30px;

    color: #777;

}




@media(max-width:700px) {


    .hero h1 {

        font-size: 40px;

    }



    nav {

        padding: 20px;

    }


}