:root {
    --bg-dark: #121212;
    --bg-card: #181818;
    --bg-header: #161616;
    --primary-orange: #ff9100;
    --primary-orange-hover: #e07e00;
    
    --neon-green: #39ff14;
    --neon-pink: #ff007f;
    --dark-blue: #004aad;
    
    --text-light: #ffffff;
    --text-muted: #999999;
    --border-color: #262626;
    --danger-red: #ff3333;
    
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    margin-bottom: 50px;
    padding-top: 30px;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* Header Principal */
.main-header {
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
}

.top-bar {
    height: 3px;
    background-color: var(--primary-orange);
    width: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-orange);
}

/* Banner Exclusivo Haze (Laranja para Amarelo Suave) */
.haze-banner {
    width: 100%;
    height: 250px;
    background: radial-gradient(circle at 25% 50%, rgba(255, 145, 0, 0.15), transparent 60%),
                radial-gradient(circle at 75% 50%, rgba(255, 215, 0, 0.12), transparent 60%),
                #121212;
    border-radius: 1.5rem;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
.haze-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}
.haze-banner-content {
    z-index: 2;
    text-align: center;
}
.haze-banner-text {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 145, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 5px;
}
.haze-banner-sub {
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Abas Internas - Loja, Leaderboard, etc. */
.store-tabs {
    display: flex;
    background: #111;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    justify-content: center;
}
button.store-tab {
    appearance: none;
    -webkit-appearance: none;
    padding: 15px 30px;
    background-color: transparent !important;
    color: #888;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
}
button.store-tab:hover {
    color: #fff;
    background-color: #1a1a1a !important;
}
button.store-tab.active {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
    background-color: #1a1a1a !important;
}

/* Sistema de Cards Originais Haze (Estilo Balão Reto/Escuro) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.pricing-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 35px 25px 25px 25px;
    text-align: center;
    position: relative;
    border: 2px solid #2a2a2a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-6px);
}

.glow-green { border-color: rgba(57, 255, 20, 0.4); box-shadow: 0 4px 25px rgba(57, 255, 20, 0.05); }
.glow-green:hover { border-color: var(--neon-green); box-shadow: 0 6px 30px rgba(57, 255, 20, 0.2); }

.glow-orange { border-color: rgba(255, 145, 0, 0.4); box-shadow: 0 4px 25px rgba(255, 145, 0, 0.05); }
.glow-orange:hover { border-color: var(--primary-orange); box-shadow: 0 6px 30px rgba(255, 145, 0, 0.2); }

.glow-blue { border-color: rgba(0, 74, 173, 0.4); box-shadow: 0 4px 25px rgba(0, 74, 173, 0.1); }
.glow-blue:hover { border-color: #3a86ff; box-shadow: 0 6px 30px rgba(0, 74, 173, 0.3); }

.glow-pink { border-color: rgba(255, 0, 127, 0.4); box-shadow: 0 4px 25px rgba(255, 0, 127, 0.05); }
.glow-pink:hover { border-color: var(--neon-pink); box-shadow: 0 6px 30px rgba(255, 0, 127, 0.2); }

.pricing-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.vip-title-green { color: #2ecc0e; text-shadow: 0 0 10px rgba(46, 204, 14, 0.3); }
.vip-title-orange { color: #db7c00; text-shadow: 0 0 10px rgba(219, 124, 0, 0.3); }
.vip-title-blue { color: #286bd9; text-shadow: 0 0 10px rgba(40, 107, 217, 0.3); }
.vip-title-pink { color: #d6006b; text-shadow: 0 0 10px rgba(214, 0, 107, 0.5); }

.vip-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    min-height: 40px;
    flex-grow: 1;
}

.price-options-box {
    background: #121212;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 20px;
    text-align: left;
}
.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 6px 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.price-row:last-child { border-bottom: none; }
.price-row strong { color: var(--text-light); }

button.btn-price {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: opacity 0.2s;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
button.btn-price:hover { opacity: 0.9; }

.discount-tag {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: #252525;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
}

.best-seller-tag {
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--neon-pink);
    color: #fff;
    font-size: 0.6rem;
    padding: 4px 30px;
    transform: rotate(45deg);
    font-weight: 800;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Tabelas e Destaques */
.mush-table-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    margin-top: 40px;
    overflow: hidden;
}
.mush-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}
.mush-table th {
    background: #111;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 800;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
}
.mush-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-weight: 600;
    font-size: 0.95rem;
}
.mush-table tr:last-child td { border-bottom: none; }
.mush-table td:first-child, .mush-table th:first-child {
    text-align: left;
    padding-left: 30px;
    background: rgba(0,0,0,0.2);
}

/* ========================================================= */
/* HIGHLIGHTS (CORES ESPECÍFICAS PARA AS COLUNAS DAS TABELAS)*/
/* ========================================================= */

/* 1. Destaque ROSA na Coluna do VIP Ultra (Apenas na Aba Loja) */
#tab-vips .mush-table th:nth-child(5), 
#tab-vips .mush-table td:nth-child(5) {
    background: rgba(255, 0, 127, 0.05);
    border-left: 2px solid rgba(255, 0, 127, 0.3);
    border-right: 2px solid rgba(255, 0, 127, 0.3);
}
#tab-vips .mush-table th:nth-child(5) {
    border-top: 2px solid rgba(255, 0, 127, 0.3);
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}
#tab-vips .mush-table tr:last-child td:nth-child(5) {
    border-bottom: 2px solid rgba(255, 0, 127, 0.3);
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}

/* 2. Destaque VERDE na Coluna de Vitórias (HG) e Kills (PvP) */
#lb-hg .mush-table th:nth-child(3), 
#lb-hg .mush-table td:nth-child(3),
#lb-pvp .mush-table th:nth-child(3), 
#lb-pvp .mush-table td:nth-child(3) {
    background: rgba(57, 255, 20, 0.05);
    border-left: 2px solid rgba(57, 255, 20, 0.3);
    border-right: 2px solid rgba(57, 255, 20, 0.3);
}
#lb-hg .mush-table th:nth-child(3),
#lb-pvp .mush-table th:nth-child(3) {
    border-top: 2px solid rgba(57, 255, 20, 0.3);
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}
#lb-hg .mush-table tr:last-child td:nth-child(3),
#lb-pvp .mush-table tr:last-child td:nth-child(3) {
    border-bottom: 2px solid rgba(57, 255, 20, 0.3);
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}


/* Subtítulo de classificação no Ranking */
.ranking-subtitle {
    text-align: center;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    background: rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Estilização da aba Ajuda e Perfil */
.help-section, .profile-section {
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 40px;
    margin-top: 20px;
}
.help-topic {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.help-topic:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.help-topic h3 { color: var(--primary-orange); margin-bottom: 15px; font-size: 1.4rem; font-weight: 800; }
.help-topic p { color: var(--text-muted); margin-bottom: 10px; font-size: 0.95rem; }
.help-topic ul { margin-left: 20px; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; }
.help-topic li { margin-bottom: 8px; }
.help-box {
    background: rgba(0,0,0,0.3);
    border-left: 4px solid var(--primary-orange);
    padding: 15px;
    border-radius: 0 4px 4px 0;
    margin: 15px 0;
    font-family: monospace;
    color: #ddd;
}

/* Stats do Perfil */
.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-card { background: #111; border: 1px solid #222; padding: 20px; border-radius: 8px; text-align: center; }
.stat-card h4 { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; margin-bottom: 10px; }
.stat-card span { display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary-orange); }
.auth-switch { color: var(--primary-orange); cursor: pointer; font-size: 0.85rem; margin-top: 15px; display: block; text-align: center; }

/* Rodapé / Footer Estilo Flame */
.main-footer {
    background-color: #121212;
    border-top: 1px solid #222;
    margin-top: 80px;
    padding-top: 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col {
    border-right: 1px solid #222;
    padding-right: 40px;
}
.footer-col:last-child { border-right: none; padding-right: 0; }
.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.footer-col p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 145, 0, 0.3);
}
.footer-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}
.footer-links a:last-child { border-bottom: none; }
.footer-links a:hover { color: var(--primary-orange); }
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: 0.3s;
}
.social-icons a:hover { background: var(--primary-orange); color: #000; transform: translateY(-3px); }

button.btn-footer {
    appearance: none;
    -webkit-appearance: none;
    background: var(--primary-orange);
    color: #000;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}
button.btn-footer:hover { background: #e68200; transform: translateY(-2px); }

.footer-bottom {
    background-color: #0a0a0a;
    padding: 20px 0;
    text-align: left;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #151515;
}

/* Seção de Equipe - Estilo Mush adaptado para Haze */
.team-section {
    padding-top: 20px;
}
.team-group {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 35px;
}
.team-group-header {
    padding: 12px 20px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 1px;
    font-size: 0.95rem;
}
.team-grid-mush {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 25px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
}
.member-card-mush {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.member-card-mush:hover {
    transform: translateY(-6px);
    filter: brightness(1.2);
}
.member-card-mush img {
    border-radius: 8px;
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.member-card-mush span {
    font-weight: 800;
    font-size: 1.05rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.text-green { color: var(--neon-green); font-size: 1rem; }
.text-red { color: var(--danger-red); font-size: 1rem; }

/* Modal Checkout */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
    width: 380px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-muted);
}

.close-modal:hover { color: #fff; }

.modal-input {
    width: 100%;
    padding: 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-radius: 4px;
    margin-top: 5px;
    outline: none;
    font-size: 0.95rem;
}

.modal-input:focus { border-color: var(--primary-orange); }

button.btn-blue { appearance: none; -webkit-appearance: none; background: #009ee3; color: #fff; border: none; }
button.btn-blue:hover { background: #008cc9; }

button.mp-button {
    font-size: 0.9rem;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    cursor: pointer;
}

/* Responsividade */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-col:nth-child(2) { border-right: none; padding-right: 0; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-col { border-right: none; padding-right: 0; border-bottom: 1px solid #222; padding-bottom: 30px; }
    .footer-col:last-child { border-bottom: none; padding-bottom: 0; }
    .footer-bottom { text-align: center; }
    .profile-stats { grid-template-columns: 1fr; }
}