:root {
    --primary-color: #00ffff; /* Ciano Neon */
    --secondary-color: #9d00ff; /* Roxo Neon */
    --bg-dark: #0a0a12; /* Fundo quase preto */
    --bg-panel: #151520; /* Fundo dos painéis */
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --border-glow: 0 0 10px rgba(0, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(157, 0, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 20%);
}

/* Header & Nav */
header {
    background-color: rgba(21, 21, 32, 0.95);
    border-bottom: 2px solid var(--secondary-color);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span { color: var(--primary-color); }

nav ul { display: flex; list-style: none; gap: 20px; }

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover, nav a.active {
    background-color: var(--secondary-color);
    color: #fff;
    box-shadow: 0 0 15px var(--secondary-color);
}

/* Main Content */
main {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}

h2 { margin-top: 30px; margin-bottom: 15px; color: #fff; }
p { line-height: 1.6; color: var(--text-muted); margin-bottom: 15px; }

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background-color: var(--bg-panel);
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--border-glow);
}

.card-img-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(45deg, #2a2a3a, #1a1a25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-weight: bold;
    font-size: 2rem;
}

.img-weapon { background: linear-gradient(45deg, #2a2a3a, #300a35); }
.img-map { background: linear-gradient(45deg, #1a2a2a, #0a3035); }

.card-content { padding: 20px; flex: 1; }
.card-title { color: #fff; font-size: 1.2rem; margin-bottom: 10px; font-weight: bold; }

/* Stats Bars */
.stat-bar {
    background-color: #333;
    height: 6px;
    border-radius: 3px;
    margin: 5px 0 15px 0;
    position: relative;
    overflow: hidden;
}
.stat-fill { height: 100%; background-color: var(--primary-color); }
.stat-label { display: flex; justify-content: space-between; font-size: 0.8rem; color: #aaa; }

/* Tables */
.wiki-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-panel);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}
.wiki-table th, .wiki-table td { padding: 15px; text-align: left; border-bottom: 1px solid #333; }
.wiki-table th { background-color: rgba(157, 0, 255, 0.2); color: var(--primary-color); }
.wiki-table tr:hover { background-color: rgba(255,255,255,0.05); }

/* Footer */
footer {
    background-color: #050508;
    border-top: 1px solid #333;
    padding: 40px 20px;
    margin-top: auto;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
.footer-col h3 { color: var(--primary-color); margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary-color); }
.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.9rem;
}
.btn-play {
    background-color: var(--primary-color);
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transition: all 0.3s;
}
.btn-play:hover { background-color: #fff; box-shadow: 0 0 25px rgba(0, 255, 255, 0.8); }

@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 15px; }
    nav ul { gap: 10px; flex-wrap: wrap; justify-content: center; }
}