/* Dark Mode Overrides */

[data-theme="dark"] {
    /* Backgrounds */
    --color-bg-primary: #0d0d12;
    --color-bg-secondary: #141419;
    --color-bg-tertiary: #1a1a24;
    --color-bg-card: #16161e;
    --color-bg-elevated: #1e1e28;

    /* Text */
    --color-text-primary: #eaeaee;
    --color-text-secondary: #9999aa;
    --color-text-muted: #666677;

    /* Borders */
    --color-border: #2a2a3a;
    --color-border-light: #3a3a4e;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-glow-red: 0 0 20px rgba(222, 8, 22, 0.35);
    --shadow-glow-green: 0 0 20px rgba(174, 204, 50, 0.35);
    --shadow-glow-yellow: 0 0 20px rgba(232, 197, 32, 0.35);

    /* Floorplan SVG */
    --fp-bg: #16161e;
    --fp-border: #2a2a3a;
    --fp-area-fill: #1a1a24;
    --fp-furniture: #2a2a3a;
    --fp-entrance-stroke: #666677;
}

/* Header */
[data-theme="dark"] .site-header {
    background: rgba(13, 13, 18, 0.92);
}

/* Hero */
[data-theme="dark"] .hero {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(222, 8, 22, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(174, 204, 50, 0.1) 0%, transparent 50%),
        var(--color-bg-primary);
}

[data-theme="dark"] .hero::before {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.02) 2px,
        rgba(255, 255, 255, 0.02) 4px
    );
}

/* Event Type Backgrounds */
[data-theme="dark"] .event-type-bg-public_viewing {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
}
[data-theme="dark"] .event-type-bg-tournament {
    background: linear-gradient(135deg, rgba(174, 204, 50, 0.2), rgba(174, 204, 50, 0.1));
}
[data-theme="dark"] .event-type-bg-party {
    background: linear-gradient(135deg, rgba(232, 197, 32, 0.2), rgba(232, 197, 32, 0.1));
}
[data-theme="dark"] .event-type-bg-special {
    background: linear-gradient(135deg, rgba(222, 8, 22, 0.2), rgba(222, 8, 22, 0.1));
}
[data-theme="dark"] .event-type-bg-other {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

/* Form Focus Rings */
[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .form-textarea:focus {
    box-shadow: 0 0 0 3px rgba(222, 8, 22, 0.25);
}

/* Menu Page – restore full retro dark look */
[data-theme="dark"] .game-menu-wrapper {
    background: #0a0a0f;
}

[data-theme="dark"] .category-tab.active {
    border-bottom-color: #0a0a0f;
}

[data-theme="dark"] .scanlines {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.08) 2px,
        rgba(0, 0, 0, 0.08) 4px
    );
}

[data-theme="dark"] .game-menu-wrapper::after {
    background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.6) 100%);
}

[data-theme="dark"] .item-price {
    color: var(--color-accent-yellow);
}

/* Mobile Nav */
[data-theme="dark"] .main-nav {
    background: var(--color-bg-secondary);
}
