:root {
    --gaming-neon: #39ff14;
    --gaming-dark: #0a0a0b;
    --gaming-text: #ffffff;
    --gaming-glass: rgba(10, 10, 11, 0.9);
}

.cg-header {
    background: var(--gaming-glass);
    border-bottom: 2px solid var(--gaming-neon);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.cg-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gaming-text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cg-logo span { color: var(--gaming-neon); }

.cg-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.cg-nav a {
    color: var(--gaming-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.cg-nav a:hover {
    color: var(--gaming-neon);
    text-shadow: 0 0 10px var(--gaming-neon);
}

/* AJUSTES PARA MÓVIL (Pantallas menores a 768px) */
@media (max-width: 768px) {
    .cg-header {
        flex-direction: column; /* Apila el logo sobre los links */
        gap: 15px;
        padding: 15px;
    }

    .cg-nav ul {
        gap: 15px;
        flex-wrap: wrap; /* Si no caben, bajan a la siguiente línea */
        justify-content: center;
    }

    .cg-nav a {
        font-size: 0.8rem;
    }
}