* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}


:root {
    --red: #dc2626;
    --red-light: #ef4444;

    --background: #0f0f12;
    --surface: #18181b;

    --white: #f5f5f0;
    --gray: #c7c7c7;
}


html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


body {
    background: var(--background);
    color: var(--white);
    overflow-x: hidden;
}


img {
    max-width: 100%;
    display: block;
}



/* HEADER */

header {

    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 5%;

    background: #111113;

    border-bottom: 1px solid rgba(220,38,38,.3);

    overflow: hidden;
}


.logo-area {

    display: flex;
    align-items: center;

    gap: 15px;

}


.logo-area img {

    width: 65px;
    height: 65px;

    object-fit: contain;

}


.logo-area h1 {

    font-size: 30px;

}



nav {

    display: flex;

    gap: 35px;

}


nav a {

    color: var(--white);

    text-decoration: none;

    font-size: 18px;

    transition: .3s;

}


nav a:hover {

    color: var(--red);

}



/* HERO */

.hero {

    min-height: 600px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 40px 20px;


    background:

    linear-gradient(

        rgba(127,29,29,.35),

        rgba(15,15,18,.95)

    );

}



.hero-logo {

    width: 180px;

    height: 180px;

    object-fit: contain;

}



.hero h2 {

    font-size: clamp(32px, 8vw, 55px);

    line-height: 1.1;

}



.hero p {

    font-size: 20px;

    color: var(--gray);

    max-width: 700px;

    margin: 20px;

}



/* IP */

.server-ip {

    background: var(--surface);

    padding: 15px 35px;

    border-radius: 12px;

    font-size: 28px;

    font-weight: bold;

    max-width: 90%;

    overflow-wrap: anywhere;

}



/* BOTÃO */

.hero button {

    margin-top: 20px;

    padding: 15px 40px;

    border: none;

    border-radius: 12px;

    background: var(--red);

    color: white;

    font-size: 18px;

    cursor: pointer;

    transition: .3s;

}


.hero button:hover {

    background: var(--red-light);

}



/* SEÇÕES */

section {

    padding: 80px 5%;

    text-align: center;

}


section h2 {

    font-size: 40px;

    margin-bottom: 50px;

}



/* CARDS */

.cards {

    display: flex;

    justify-content: center;

    gap: 35px;

    flex-wrap: wrap;

}



.card {

    width: 330px;

    background: var(--surface);

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid rgba(220,38,38,.25);

}



.card img {

    width: 100%;

    height: 220px;

    object-fit: cover;

}



.card h3 {

    font-size: 25px;

    margin: 20px;

}



.card p {

    color: var(--gray);

    margin: 20px;

}



/* SHOWCASE LOBBY */

.lobby-showcase {

    max-width: 1000px;

    margin: auto;

    background: var(--surface);

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid rgba(220,38,38,.25);

}



.lobby-showcase img {

    width: 100%;

    height: 500px;

    object-fit: cover;

}



.lobby-text {

    padding: 30px;

}



.lobby-text h3 {

    font-size: 30px;

}



.lobby-text p {

    margin-top: 15px;

    color: var(--gray);

}



/* FOOTER */

footer {

    padding: 30px;

    background: #09090b;

    text-align: center;

    color: #999;

}



/* MOBILE */

@media(max-width:768px) {


    header {

        flex-direction: column;

        gap: 15px;

        padding: 20px;

    }



    .logo-area h1 {

        font-size: 24px;

    }



    .logo-area img {

        width: 55px;

        height: 55px;

    }



    nav {

        gap: 15px;

        flex-wrap: wrap;

        justify-content: center;

    }



    nav a {

        font-size: 15px;

    }



    .hero {

        min-height: 520px;

    }



    .hero-logo {

        width: 120px;

        height: 120px;

    }



    .hero p {

        font-size: 16px;

    }



    .server-ip {

        font-size: 18px;

        padding: 12px 18px;

    }



    .hero button {

        min-width: 200px;

        padding: 14px 25px;

        font-size: 16px;

    }



    section {

        padding: 50px 15px;

    }



    section h2 {

        font-size: 30px;

        margin-bottom: 35px;

    }



    .cards {

        flex-direction: column;

        align-items: center;

    }



    .card {

        width: 100%;

        max-width: 350px;

    }



    .card img {

        height: 200px;

    }



    .lobby-showcase img {

        height: 220px;

    }



    .lobby-text {

        padding: 20px;

    }



    .lobby-text h3 {

        font-size: 24px;

    }



    .lobby-text p {

        font-size: 15px;

    }



    footer {

        font-size: 14px;

        padding: 20px;

    }

}