* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}


body {
    background: #030303;
    color: white;
    overflow-x: hidden;
}


/* Animated Background */

.background {

    position: fixed;
    width: 100%;
    height: 100%;

    background:
        radial-gradient(circle at 20% 30%, rgba(255, 190, 0, .25), transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 190, 0, .25), transparent 20%),
        linear-gradient(120deg, #000, #090700, #000);

    z-index: -2;
}


.background:after {

    content: "";

    position: absolute;
    width: 200%;
    height: 200%;

    background-image:
        radial-gradient(#ffc400 1px, transparent 1px);

    background-size: 35px 35px;

    opacity: .35;

    animation: move 15s linear infinite;

}


@keyframes move {

    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-200px, -200px);
    }

}





/* Header */


header {

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 50px;

    border-bottom: 1px solid rgba(255, 200, 0, .2);

}


.logo {

    font-size: 32px;

    font-weight: 800;

    color: #ffc400;

    text-shadow: 0 0 20px #ffbf00;

}



nav {

    display: flex;

    gap: 55px;

}


nav a {

    color: #ddd;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

}


nav .active {

    color: #ffc400;

}




.join {

    background: transparent;

    border: 1px solid #dca900;

    padding: 12px 30px;

    border-radius: 30px;

    color: white;

    font-weight: 700;

    box-shadow: 0 0 15px #dca900;

}





/* Hero */


.hero {

    text-align: center;

    padding: 65px 20px;

}



.badge {

    display: inline-block;

    padding: 12px 35px;

    border: 1px solid #dca900;

    border-radius: 30px;

    color: #ffc400;

    margin-bottom: 30px;

}




.hero h1 {

    font-size: 60px;

    line-height: 1.1;

    font-weight: 800;

}



.hero h1 span {

    color: #ffc400;

    text-shadow: 0 0 25px #ffb300;

}



.hero p {

    margin: 25px 0;

    color: #bbb;

    font-size: 18px;

    line-height: 30px;

}




.explore {

    padding: 18px 55px;

    border: none;

    border-radius: 12px;

    font-size: 16px;

    font-weight: 700;

    background: linear-gradient(#ffd43b, #e89b00);

    box-shadow: 0 0 30px #ffbd00;

    cursor: pointer;

}





.services {

    margin-top: 50px;

    display: flex;

    justify-content: center;

    gap: 60px;

}


.services div {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.services h3 {

    font-size: 30px;

    color: #ffc400;

}



.services small {

    color: #aaa;

}





/* Features */


.features {

    text-align: center;

    padding: 40px 20px;

}


.features h5 {

    color: #ffc400;

    letter-spacing: 2px;

}


.features h2 {

    font-size: 35px;

    margin: 15px;

}



.cards {

    display: flex;

    justify-content: center;

    gap: 25px;

    margin-top: 40px;

}



.card {


    width: 300px;

    padding: 35px;

    border: 1px solid rgba(255, 190, 0, .4);

    border-radius: 18px;

    background: rgba(10, 10, 10, .7);

    transition: .3s;

}



.card:hover {

    transform: translateY(-10px);

    box-shadow: 0 0 30px #ffb900;

}



.icon {

    font-size: 45px;

    margin-bottom: 20px;

}



.card p {

    color: #aaa;

    line-height: 25px;

    margin-top: 15px;

}





/* Stats */


.stats {

    margin: 20px auto;

    max-width: 850px;

    display: flex;

    justify-content: space-around;

    border: 1px solid #8b6500;

    padding: 25px;

    border-radius: 15px;

}



.stats h2 {

    color: #fff;

    font-size: 30px;

}


.stats p {

    color: #aaa;

}




footer {

    text-align: center;

    padding: 25px;

    color: #aaa;

}




@media(max-width:800px) {


    header {

        padding: 20px;

    }


    nav {

        display: none;

    }



    .hero h1 {

        font-size: 35px;

    }


    .services,
    .cards,
    .stats {

        flex-direction: column;

        align-items: center;

    }



}