/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY / BACKGROUND */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: url('assets/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: 35px auto;
    display: block;
    filter: drop-shadow(0 0 15px #00ff66);
}

/* IP BOX */
.ip-box {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.ip-box span {
    margin-left: 8px;
}

/* STATUS */
.status-online {
    color: #00ff66;
}

.status-offline {
    color: #ff4444;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* SERVER STATUS BOX */
.server-status-box {
    margin: 20px auto 35px;
    padding: 20px;
    max-width: 900px;
    background: rgba(0,0,0,0.85);
    border: 2px solid #00ff66;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(0,255,102,0.45);
}

.server-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* BOTÃO CONECTAR */
.btn-conectar {
    padding: 14px 28px;
    background: linear-gradient(135deg, #00ff66, #00cc55);
    color: #000;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0,255,102,0.7);
    transition: 0.3s;
}

.btn-conectar:hover {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(0,255,102,1);
}

/* SERVER INFO GRID */
.server-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.info-item {
    background: rgba(0,0,0,0.7);
    border: 1px solid #00ff66;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 0 12px rgba(0,255,102,0.3);
}

.info-label {
    font-size: 13px;
    color: #aaa;
}

.info-value {
    margin-top: 5px;
    font-size: 15px;
    font-weight: bold;
    color: #00ff66;
    text-shadow: 0 0 8px #00ff66;
}

/* SECTION TITLE */
.section-title {
    margin: 45px 0 25px;
    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.8);
}

.card h3 {
    margin-bottom: 15px;
    color: #00ff66;
}

.card ul {
    list-style: none;
}

.card ul li {
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.95;
}

/* 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) {
    .server-top {
        flex-direction: column;
    }

    .btn-conectar {
        width: 100%;
        text-align: center;
    }

    .menu-center {
        gap: 10px;
    }

    .logo {
        max-width: 170px;
    }
}
