:root {
    /* Colores neón y oscuros típicos del estilo gamer */
    --primary-dark: #0a0a12;
    --secondary-dark: #1a1a2e;
    --neon-blue: #00f0ff;
    --neon-pink: #ff00ff;
    --neon-purple: #9d00ff;
    --neon-green: #00ff9d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent-glow: 0 0 10px rgba(0, 240, 255, 0.7), 0 0 20px rgba(0, 240, 255, 0.4);
    
    /* Degradados futuristas */
    --primary-gradient: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-blue) 100%);
    --secondary-gradient: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    
    /* Efectos */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

body {
    background-color: var(--primary-dark);
    color: var(--text-primary);
    font-family: 'Rajdhani', 'Orbitron', sans-serif;
    overflow-x: hidden;
}

/* Estilo para encabezados */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--neon-blue);
}

/* Barra de navegación gamer */
.navbar-gamer {
    background-color: rgba(10, 10, 18, 0.9) !important;
    border-bottom: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.navbar-gamer .nav-link {
    color: var(--text-primary) !important;
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    transition: var(--transition-base);
}

.navbar-gamer .nav-link:hover {
    color: var(--neon-blue) !important;
    text-shadow: 0 0 10px var(--neon-blue);
}

.navbar-gamer .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: var(--transition-base);
}

.navbar-gamer .nav-link:hover::after {
    width: 100%;
}

/* Tarjetas de productos estilo gamer */
.game-card {
    background: var(--secondary-dark);
    border: 1px solid var(--neon-blue);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--card-shadow);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    z-index: -1;
    border-radius: var(--border-radius);
    opacity: 0;
    transition: var(--transition-base);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.3);
}

.game-card:hover::before {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}

.game-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--neon-blue);
    transition: var(--transition-base);
}

.game-card:hover .game-card-img {
    transform: scale(1.05);
}

.game-card-body {
    padding: 1.5rem;
}

.game-card-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.game-card-price {
    color: var(--neon-green);
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.game-card-platform {
    display: inline-block;
    background: rgba(0, 240, 255, 0.2);
    color: var(--neon-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Botones estilo gamer */
.btn-gamer {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gamer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--neon-blue);
    transition: var(--transition-base);
    z-index: -1;
}

.btn-gamer:hover {
    color: var(--primary-dark);
    text-shadow: 0 0 5px var(--primary-dark);
}

.btn-gamer:hover::before {
    width: 100%;
}

.btn-gamer-primary {
    background: var(--neon-blue);
    color: var(--primary-dark);
    box-shadow: 0 0 10px var(--neon-blue);
}

.btn-gamer-primary:hover {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px var(--neon-purple);
}

/* Sección destacada */
.featured-section {
    background: linear-gradient(rgba(10, 10, 18, 0.9), rgba(10, 10, 18, 0.9)), 
                url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    position: relative;
    border-bottom: 1px solid var(--neon-blue);
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
                rgba(157, 0, 255, 0.1), 
                rgba(0, 240, 255, 0.1));
    pointer-events: none;
}

/* Animaciones */
@keyframes borderGlow {
    0% {
        filter: blur(5px);
        opacity: 0.7;
    }
    50% {
        filter: blur(7px);
        opacity: 1;
    }
    100% {
        filter: blur(5px);
        opacity: 0.7;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px var(--neon-blue);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px var(--neon-blue);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px var(--neon-blue);
    }
}

/* Efecto de grid digital */
.digital-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-purple);
}

/* Responsive design */
@media (max-width: 768px) {
    .game-card {
        margin-bottom: 2rem;
    }
    
    .navbar-gamer .navbar-nav {
        background: var(--secondary-dark);
        padding: 1rem;
        border: 1px solid var(--neon-blue);
        border-radius: var(--border-radius);
        margin-top: 1rem;
    }
}