:root {

    --red: #ff5f6d;
    --orange: #ff706e;
    --gold: #ffc371;

    --bg: #12090d;

    --glass: rgba(255, 255, 255, .08);

}


* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: 'Montserrat', sans-serif;

}


body {


    min-height: 100vh;

    color: white;

    overflow-x: hidden;


    background:


        linear-gradient(rgba(15, 8, 12, .88),

            rgba(15, 8, 12, .96));

    rgba(21, 21, 12);





    background-size: cover;

    background-position: center;

    background-attachment: fixed;


}




body::before {


    content: "";

    position: fixed;

    inset: 0;


    background:

        radial-gradient(circle at 20% 20%,

            #ff5f6d55,

            transparent 35%),


        radial-gradient(circle at 80% 40%,

            #ffc37144,

            transparent 35%);


    z-index: -1;


}






/* NAVBAR */


header {


    position: fixed;

    top: 20px;

    width: 100%;

    padding: 0 8%;

    z-index: 100;


}



nav {


    display: flex;

    align-items: center;

    justify-content: space-between;


    padding: 18px 30px;


    background:

        rgba(20, 10, 20, .55);


    backdrop-filter: blur(20px);


    border:

        1px solid rgba(255, 255, 255, .15);


    border-radius: 25px;


}




.logo {


    display: flex;

    align-items: center;

    gap: 10px;


}


.logo-main {


    font-size: 30px;

    font-weight: 900;

    letter-spacing: 2px;


    background:

        linear-gradient(90deg,

            var(--red),

            var(--gold));


    -webkit-background-clip: text;

    color: transparent;


}


.logo-sub {


    font-size: 18px;

    font-weight: 900;

    opacity: .7;

}





.links a {


    color: white;

    text-decoration: none;


    margin-left: 25px;


    opacity: .7;


    transition: .3s;


}


.links a:hover {


    color: var(--gold);

    opacity: 1;


}





.server-status {


    display: flex;

    align-items: center;

    gap: 10px;


    padding:

        10px 18px;


    background:

        rgba(255, 255, 255, .08);


    border-radius: 50px;


    font-size: 14px;


}


.server-status span {


    width: 10px;

    height: 10px;


    background: #4dff88;


    border-radius: 50%;


    box-shadow:

        0 0 15px #4dff88;


}







/* HERO */


.hero {


    height: 100vh;


    display: flex;

    align-items: center;

    justify-content: center;


    text-align: center;


}


.badge {


    display: inline-block;


    padding:

        10px 20px;


    border-radius: 50px;


    background:

        rgba(255, 255, 255, .1);


    border:

        1px solid rgba(255, 255, 255, .15);


    margin-bottom: 25px;


}




.hero h1 {


    font-size: clamp(50px, 8vw, 90px);


    font-weight: 900;


    background:

        linear-gradient(90deg,

            var(--red),

            var(--gold));


    -webkit-background-clip: text;

    color: transparent;


    filter:

        drop-shadow(0 0 30px #ff5f6d66);


}



.hero p {


    margin-top: 20px;


    font-size: 20px;


    opacity: .75;


    line-height: 1.6;


}




.buttons {


    margin-top: 40px;


}



button {


    padding:

        16px 45px;


    margin: 10px;


    border: none;


    border-radius: 15px;


    font-weight: 800;


    font-size: 16px;


    cursor: pointer;


    color: white;


    background:

        linear-gradient(135deg,

            var(--red),

            var(--gold));


    transition: .3s;


}


button:hover {


    transform:

        translateY(-5px);


    box-shadow:

        0 20px 50px #ff5f6d66;


}



.secondary {


    background:

        rgba(255, 255, 255, .1);


    border:

        1px solid rgba(255, 255, 255, .2);


}







.section {


    padding:

        90px 8%;


}



.title {


    text-align: center;


    font-size: 42px;


    margin-bottom: 50px;


}



.cards {


    display: grid;


    grid-template-columns:

        repeat(auto-fit, minmax(250px, 1fr));


    gap: 30px;


}


.card,
.owner-card {


    background:

        var(--glass);


    border:

        1px solid rgba(255, 255, 255, .15);


    backdrop-filter: blur(20px);


    border-radius: 25px;


    padding: 35px;


    text-align: center;


    transition: .3s;


}



.card:hover,
.owner-card:hover {


    transform: translateY(-10px);


    border-color: var(--red);


}



.card h3 {


    color: var(--gold);

    font-size: 26px;

    margin-bottom: 15px;


}





.owners {


    display: flex;

    justify-content: center;

    gap: 40px;

    flex-wrap: wrap;


}



.owner-card {


    width: 260px;


}



.owner-card img {


    width: 120px;

    height: 120px;


    border-radius: 20px;


    image-rendering: pixelated;


}



.owner-card p {


    color: var(--gold);

    font-weight: bold;


}





footer {


    text-align: center;

    padding: 40px;

    opacity: .5;


}








/* TOAST */


#toast {


    position: fixed;


    right: 30px;

    bottom: 30px;


    display: flex;

    align-items: center;

    gap: 15px;


    padding: 20px;


    background:

        rgba(20, 10, 20, .9);


    backdrop-filter: blur(20px);


    border-radius: 20px;


    border:

        1px solid rgba(255, 255, 255, .15);


    transform:

        translateX(150%);


    transition: .4s;


}



#toast.show {

    transform: translateX(0);

}



.toast-icon {


    width: 45px;

    height: 45px;


    display: flex;

    align-items: center;

    justify-content: center;


    border-radius: 50%;


    background:

        linear-gradient(135deg,

            var(--red),

            var(--gold));


}




/* SCROLLBAR */


::-webkit-scrollbar {

    width: 12px;

}


::-webkit-scrollbar-track {

    background: #12090d;

}


::-webkit-scrollbar-thumb {


    background:

        linear-gradient(180deg,

            var(--red),

            var(--gold));


    border-radius: 20px;


}




@media(max-width:800px) {


    nav {

        flex-direction: column;

        gap: 20px;

    }


    .links a {

        margin: 10px;

    }


}

/* =================================
   MINECRAFT WORLD ANIMATIONS
================================= */


#minecraft-world {

    position: fixed;

    inset: 0;

    pointer-events: none;

    overflow: hidden;

    z-index: -1;

}



.mc-object {


    position: absolute;


    image-rendering: pixelated;


    user-select: none;


    animation:

        float linear forwards;


}



@keyframes float {


    from {


        transform:

            translateY(110vh) rotate(0deg);


        opacity: 0;


    }



    10% {


        opacity: 1;

    }



    to {


        transform:

            translateY(-20vh) rotate(360deg);


        opacity: 0;


    }



}




.mc-runner {


    position: absolute;


    left: -150px;


    animation:

        runAcross linear forwards;


}



@keyframes runAcross {


    from {

        transform: translateX(-200px);

    }



    to {


        transform: translateX(120vw);


    }



}




.mc-chase {


    display: flex;

    align-items: center;

    gap: 5px;


    position: absolute;


    left: -200px;


    animation:

        chase linear forwards;


}



@keyframes chase {


    from {


        transform: translateX(-200px);


    }



    to {


        transform: translateX(120vw);


    }



}




.mc-head {


    width: 50px;

    height: 50px;


    border-radius: 8px;


    image-rendering: pixelated;


}





.floating-owner {

    position: absolute;

    width: 90px;

    height: 90px;

    image-rendering: pixelated;

    z-index: 2;

    pointer-events: none;

    filter:
        drop-shadow(0 0 15px #ff5f6d);

}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;

    background: #111;
    color: white;

    padding: 14px 22px;
    border-radius: 12px;

    font-size: 15px;
    font-weight: 600;

    opacity: 0;
    transform: translateY(20px);

    pointer-events: none;

    transition: 
        opacity 0.3s ease,
        transform 0.3s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);

    border: 1px solid rgba(255,255,255,0.08);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}