/* ===== NEON ARCADE DREAMS THEME ===== */
/* Canvas Design Style - Artistic, expressive, Tokyo arcade aesthetic */

[data-theme="neon-dreams"] {
    /* ===== BACKGROUNDS ===== */
    --bg-primary: #0D1117;
    --bg-secondary: #161b22;
    --bg-card: #1c2128;
    --bg-header: #0D1117;

    /* ===== TEXT ===== */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #6b7280;

    /* ===== BORDERS & SHADOWS ===== */
    --border-color: #30363d;
    --shadow-color: rgba(0, 0, 0, 0.6);

    /* ===== ACCENTS ===== */
    --accent-primary: #d32f2f;
    --accent-cyan: #00D9FF;
    --accent-magenta: #FF006E;
    --accent-green: #00FF9F;

    /* ===== NEON GLOW EFFECTS ===== */
    --glow-cyan: rgba(0, 217, 255, 0.5);
    --glow-magenta: rgba(255, 0, 110, 0.5);
    --glow-green: rgba(0, 255, 159, 0.4);

    /* Card glow - alternating via nth-child in styles.css */
    --card-glow-1: 0 0 20px var(--glow-cyan), 0 4px 20px var(--shadow-color);
    --card-glow-2: 0 0 20px var(--glow-magenta), 0 4px 20px var(--shadow-color);
    --card-glow-3: 0 0 15px var(--glow-green), 0 4px 20px var(--shadow-color);
}

/* ===== NEON DREAMS SPECIFIC STYLES ===== */

[data-theme="neon-dreams"] .game-card {
    border: 1px solid rgba(0, 217, 255, 0.3);
}

[data-theme="neon-dreams"] .game-card:nth-child(3n+1) {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4), 0 8px 32px rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 217, 255, 0.4);
}

[data-theme="neon-dreams"] .game-card:nth-child(3n+2) {
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4), 0 8px 32px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 0, 110, 0.4);
}

[data-theme="neon-dreams"] .game-card:nth-child(3n) {
    box-shadow: 0 0 15px rgba(0, 255, 159, 0.35), 0 8px 32px rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 255, 159, 0.35);
}

[data-theme="neon-dreams"] .game-card:hover {
    transform: translateY(-8px) scale(1.02);
}

[data-theme="neon-dreams"] .game-card:nth-child(3n+1):hover {
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6), 0 12px 40px rgba(0, 0, 0, 0.6);
}

[data-theme="neon-dreams"] .game-card:nth-child(3n+2):hover {
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.6), 0 12px 40px rgba(0, 0, 0, 0.6);
}

[data-theme="neon-dreams"] .game-card:nth-child(3n):hover {
    box-shadow: 0 0 25px rgba(0, 255, 159, 0.5), 0 12px 40px rgba(0, 0, 0, 0.6);
}

/* Search bar glow */
[data-theme="neon-dreams"] .search-input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px var(--glow-cyan);
}

/* Badge styling */
[data-theme="neon-dreams"] .badge-slot {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}

[data-theme="neon-dreams"] .badge-coming-soon {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #b71c1c 100%);
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.4);
}

/* Background grain texture */
[data-theme="neon-dreams"] body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}