/* ============================= */
/* RESET */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================= */
/* BODY / FUNDO */
/* ============================= */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: url('../img/background-cs.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

/* OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: -1;
}

/* ============================= */
/* HEADER / MENU */
/* ============================= */
.header-center {
    width: 100%;
    background: rgba(0,0,0,0.9);
    border-bottom: 2px solid #00ff66;
    box-shadow: 0 0 15px rgba(0,255,102,0.4);
}

.menu-center {
    max-width: 1200px;
    margin: auto;
    padding: 14px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.menu-center a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.3s;
}

.menu-center a:hover,
.menu-center a.active {
    background: #00ff66;
    color: #000;
    box-shadow: 0 0 12px #00ff66;
}

/* ============================= */
/* CONTAINER */
/* ============================= */
.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    text-align: center;
}

/* ============================= */
/* LOGO */
/* ============================= */
.logo {
    max-width: 220px;
    margin: 30px auto 40px;
    display: block;
    filter: drop-shadow(0 0 15px #00ff66);
}

/* ============================= */
/* TÍTULO */
/* ============================= */
.section-title {
    margin: 30px 0;
    font-size: 26px;
    color: #00ff66;
    text-shadow: 0 0 10px #00ff66;
}

/* ============================= */
/* GRID */
/* ============================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* ============================= */
/* CARD */
/* ============================= */
.card {
    background: rgba(0,0,0,0.85);
    padding: 25px;
    border-radius: 14px;
    border-left: 4px solid #00ff66;
    box-shadow: 0 0 15px rgba(0,255,102,0.35);
    transition: 0.3s;
    text-align: left;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0,255,102,0.9);
}

.card h3 {
    margin-bottom: 15px;
    color: #00ff66;
    font-size: 18px;
}

.card ul {
    list-style: none;
}

.card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* ============================= */
/* BADGES */
/* ============================= */

/* ONLINE */
.badge-online {
    margin-left: 8px;
    color: #00ff66;
    font-weight: bold;
    animation: blink 1s infinite;
}

/* STAFF */
.badge-staff {
    color: #ffd700;
    font-weight: bold;
    text-shadow: 0 0 6px rgba(255,215,0,0.8);
}

/* VIP */
.badge-vip {
    color: #00bfff;
    font-weight: bold;
    text-shadow: 0 0 6px rgba(0,191,255,0.8);
}

/* SCORE */
.score {
    margin-left: 6px;
    font-size: 13px;
    color: #aaa;
}

/* ============================= */
/* ANIMAÇÃO */
/* ============================= */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* ============================= */
/* FOOTER */
/* ============================= */
.footer {
    margin-top: 50px;
    padding: 15px;
    text-align: center;
    background: rgba(0,0,0,0.9);
    border-top: 2px solid #00ff66;
    font-size: 13px;
}

/* ============================= */
/* RESPONSIVO */
/* ============================= */
@media (max-width: 768px) {
    .menu-center {
        gap: 10px;
    }

    .logo {
        max-width: 170px;
    }

    .card {
        padding: 20px;
    }
}
