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

body {
    background: #0b0b14;
    color: white;
}


/* NAVBAR */

.navbar {
    width: 100%;
    height: 80px;
    background: rgba(10,10,20,0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    position: fixed;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}


.logo img {
    width: 150px;
}


.navbar ul {
    display: flex;
    gap: 30px;
    list-style: none;
}


.navbar a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: .3s;
}


.navbar a:hover {
    color: #a855f7;
}



/* HERO */

.hero {

    height: 100vh;

    background:
    linear-gradient(
        rgba(10,0,30,.75),
        rgba(10,0,30,.9)
    ),
    url("../img/banner.jpg");

    background-size: cover;
    background-position: center;

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

    text-align: center;
}


.hero-content h1 {

    font-size: 80px;
    letter-spacing: 5px;

    color: #a855f7;

    text-shadow:
    0 0 20px #7c3aed;

}


.hero-content p {

    margin-top: 20px;
    font-size: 24px;
    color: #ddd;

}



/* BOTÕES */


.buttons {

    margin-top: 40px;

}


.btn {

    display: inline-block;

    padding: 15px 35px;

    margin: 10px;

    border-radius: 10px;

    background: #7c3aed;

    color:white;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}


.btn:hover {

    background:#a855f7;

    transform: translateY(-5px);

}


.discord {

    background:#5865F2;

}



/* CARDS */


.cards {

    padding:80px 8%;

    text-align:center;

}


.cards h2 {

    font-size:40px;

    margin-bottom:50px;

    color:#a855f7;

}



.container {

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}



.card {

    background:#181827;

    width:300px;

    padding:30px;

    border-radius:15px;

    border:1px solid #2b2b45;

    transition:.3s;

}



.card:hover {

    transform:translateY(-10px);

    border-color:#a855f7;

    box-shadow:0 0 25px #7c3aed55;

}


.card h3 {

    font-size:25px;

    margin-bottom:15px;

}


.card p {

    color:#aaa;

}



.destaque {

    border:2px solid #a855f7;

}



/* FOOTER */


footer {

    background:#080810;

    padding:30px;

    text-align:center;

    color:#777;

}

.server-ip {

    margin-top:25px;

    padding:15px 30px;

    display:inline-block;

    background:#181827;

    border:1px solid #7c3aed;

    border-radius:10px;

    color:#fff;

    font-size:18px;

    box-shadow:0 0 20px #7c3aed55;

}

.regras-container {

    flex-direction: column;
    align-items: center;

}


.regra-card {

    width: 90%;
    max-width: 900px;
    text-align: left;

}


.regra-card h3 {

    color:#a855f7;
    margin-bottom:20px;

}


.regra-card p {

    line-height:1.7;
    color:#ddd;

}

.suporte-box {

    max-width:700px;
    text-align:center;

}


.suporte-box h3 {

    color:#a855f7;
    font-size:30px;

}


.suporte-box p {

    color:#ddd;
    line-height:1.8;

}

.status {

    padding:60px 8%;
    background:#11111d;
    text-align:center;

}


.status h2 {

    color:#a855f7;
    font-size:35px;
    margin-bottom:40px;

}


.status-container {

    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;

}


.status-card {

    background:#181827;

    width:220px;

    padding:25px;

    border-radius:15px;

    border:1px solid #2b2b45;

    transition:.3s;

}


.status-card:hover {

    transform:translateY(-8px);

    border-color:#a855f7;

    box-shadow:0 0 20px #7c3aed55;

}


.status-card h3 {

    color:white;

    margin-bottom:15px;

}


.status-card p {

    color:#aaa;

}