/* TEMA WANGAN MIDNIGHT CLUB */
:root {
    --deep-blue: #02050a;
    --neon-blue: #00d4ff;
    --neon-purple: #7B2CBF;
    --text-gray: #a0a0a0;
}

body {
    margin: 0;
    background: var(--deep-blue) !important;
    font-family: 'Segoe UI', sans-serif;
    color: white;
    overflow-x: hidden;
}

.particles-container {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Header Neon - Atualizado com Flexbox para Esquerda, Centro e Direita */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple);
}

.header-left { flex: 1; display: flex; align-items: center; }
.header-center { flex: 2; display: flex; justify-content: center; }
.header-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; }

/* Logo estilizada */
.logo { font-size: 24px; font-weight: bold; text-decoration: none; color: white; }
.logo span { color: var(--neon-purple); }

.nav-links { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: white; font-weight: bold; font-style: italic; transition: 0.3s; }
.nav-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px var(--neon-blue), 0 0 15px var(--neon-purple);
    transform: skewX(-10deg);
}

/* Classe para a página atual (Sem brilho) */
.nav-links a.active {
    color: #555;
    text-shadow: none;
    pointer-events: none;
}

/* Link do Profile na direita */
.profile-link {
    color: white; text-decoration: none; font-weight: bold; font-size: 18px; font-style: italic; transition: 0.3s;
}
.profile-link:hover {
    color: var(--neon-blue); text-shadow: 0 0 8px var(--neon-blue);
}

/* Nova Seção Hero (Estilo No Hesi) */
.hero-info {
    text-align: center;
    margin-top: 10vh;
    padding: 0 20px;
    min-height: 60vh;
}
.hero-title {
    font-size: 60px;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
    margin-bottom: 20px;
    font-style: italic;
    letter-spacing: 2px;
}
.hero-desc {
    color: #ccc;
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- O restante abaixo é o seu código original mantido --- */

.login-box {
    background: rgba(10, 20, 35, 0.9); padding: 40px; border-radius: 10px; border: 1px solid var(--neon-blue); box-shadow: 0 0 20px rgba(0, 212, 255, 0.2); width: 350px; margin: 100px auto;
}
.user-box { position: relative; margin-bottom: 25px; }
.user-box input { width: 100%; background: transparent; border: none; border-bottom: 1px solid white; color: white; padding: 10px 0; outline: none; }
.user-box label { position: absolute; top: 0; left: 0; color: #888; transition: 0.8s; pointer-events: none; }
.user-box input:focus ~ label, .user-box input:valid ~ label { top: -15px; color: var(--neon-blue); font-size: 11px; }

.submit-btn { width: 100%; padding: 10px; background: transparent; border: 1px solid var(--neon-blue); color: var(--neon-blue); font-weight: bold; cursor: pointer; transition: 0.5s; position: relative; border-radius: 10px; box-shadow: 0 0 5px var(--neon-blue); }
.submit-btn:hover { background: var(--neon-blue); color: #3c0054; box-shadow: 0 0 30px var(--neon-blue); }

.pass-container { padding: 50px; text-align: center; }
.tier-grid { display: flex; justify-content: center; gap: 30px; margin-top: 50px; }
.tier-card { background: rgba(10, 15, 25, 0.8); border: 2px solid #333; border-radius: 15px; padding: 30px; width: 280px; transition: 0.4s; }

.tier-card.bronze { border-color: #cd7f32; box-shadow: 0 0 15px rgba(205, 127, 50, 0.3); }
.tier-card.silver { border-color: #c0c0c0; box-shadow: 0 0 15px rgba(192, 192, 192, 0.3); }
.tier-card.gold { border-color: #ffd700; box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
.tier-card:hover { transform: translateY(-10px); }

.tier-header { font-size: 28px; font-weight: bold; margin-bottom: 10px; font-style: italic; }
.tier-features { list-style: none; padding: 0; margin: 20px 0; text-align: left; color: #ccc; }
.tier-features li { margin: 10px 0; border-bottom: 1px solid #222; }

.tier-btn { background: transparent; border: 1px solid white; color: white; padding: 10px 20px; cursor: pointer; width: 100%; font-weight: bold; text-decoration: none; display: inline-block; }

/* Footer Original */
.main-footer { padding: 20px; background: #000; text-align: center; border-top: 1px solid #333; }
.footer-content p { margin: 0 0 10px 0; color: #777; }
.social-links a { color: var(--neon-blue); margin: 0 10px; text-decoration: none; }
.server-status { margin-top: 10px; color: #0f0; font-weight: bold; }