/* CYBERPUNK NEON RED THEME */

body.neo-body {
    margin: 0;
    background: #050505;
    color: #e6e6e6;
    font-family: 'Orbitron', sans-serif;
}

/* NAVBAR */

.neo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0c0c0c;
    padding: 18px 40px;
    border-bottom: 2px solid #ff0033;
    box-shadow: 0 0 20px #ff0033;
}

.neo-logo {
    font-size: 26px;
    font-weight: 700;
}
.neo-logo span {
    color: #ff0033;
    text-shadow: 0 0 10px #ff0033;
}

.neo-menu a {
    margin: 0 18px;
    text-decoration: none;
    color: #bfbfbf;
    transition: 0.2s;
}
.neo-menu a:hover {
    color: #ff0033;
    text-shadow: 0 0 10px #ff0033;
}

.neo-add {
    padding: 6px 12px;
    border: 1px solid #ff0033;
    border-radius: 6px;
    box-shadow: 0 0 10px #ff0033;
}

.neo-content {
    padding: 45px;
}

/* SERVER CARDS */

.server-card {
    background: #111;
    border-left: 4px solid #ff0033;
    box-shadow: 0 0 12px #140008;
    padding: 18px;
    margin-bottom: 18px;
    border-radius: 4px;
}

.server-card.online {
    border-left-color: #00ff55;
    box-shadow: 0 0 10px #004d1f;
}

.server-card.offline {
    border-left-color: #ff0033;
}

/* FOOTER */

.neo-footer {
    text-align: center;
    padding: 18px;
    color: #666;
    border-top: 1px solid #2a2a2a;
}


.neo-hero {
    text-align: center;
    margin-top: 40px;
}

.neo-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.stat-card {
    background: #0f0f0f;
    padding: 20px;
    text-align: center;
    border: 1px solid #ff0033;
    border-radius: 8px;
    box-shadow: 0 0 10px #4a0000;
}

.stat-card span {
    display: block;
    font-size: 36px;
    color: #ff0033;
    text-shadow: 0 0 10px #ff0033;
    margin-bottom: 8px;
}

.neo-games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.game-card {
    padding: 20px;
    background: #0f0f0f;
    text-align: center;
    border: 1px solid #c9002b;
    transition: .2s;
}
.game-card:hover {
    box-shadow: 0 0 12px #ff0033;
    cursor: pointer;
}




.platform-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.info-card {
    background: #101010;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid rgba(255,0,0,0.4);
    box-shadow: 0 0 12px rgba(255,0,0,0.4);
    transition: 0.3s;
}

.info-card:hover {
    box-shadow: 0 0 25px rgba(255,0,0,0.8);
    transform: translateY(-4px);
}

.info-card .icon {
    font-size: 35px;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #ff0000;
}

.info-card h3 {
    margin-bottom: 8px;
    color: #ff2b2b;
    font-weight: bold;
}

.servers-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 50px;
}

.servers-box {
    background: #101010;
    padding: 25px;
    border: 2px solid rgba(255,0,0,0.4);
    box-shadow: 0 0 12px rgba(255,0,0,0.4);
    border-radius: 8px;
}

.servers-box h3 {
    color: #ff2b2b;
    margin-bottom: 10px;
}

.servers-box .subtitle {
    font-size: 14px;
    opacity: .7;
    margin-bottom: 20px;
}

.servers-box ul {
    list-style: none;
    padding: 0;
}

.servers-box ul li {
    background: #181818;
    margin-bottom: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    border-left: 3px solid #ff0000;
    transition: 0.3s;
}

.servers-box ul li:hover {
    background: #202020;
    box-shadow: 0 0 8px rgba(255,0,0,0.6);
}

.flag {
    margin-right: 6px;
}

.games-section {
    margin-top: 60px;
}

.section-title {
    color: #ff2b2b;
    margin-bottom: 20px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.game-card {
    text-align: center;
    padding: 20px;
}

.game-card .game-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 6px #ff0000);
}
