/* StudioHera Theme System (Copyright Safe Edition) */

/* 1. DEFAULT (NEON / CYBERPUNK) */
:root {
    --bg-color: #0c0c0c;
    --text-color: #e0e0e0;
    --accent-color: #c9a227;
    /* Gold/Brass */
    --accent-hover: #e0b736;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --card-radius: 20px;
    --btn-radius: 50px;
    --shadow-glow: 0 0 20px rgba(201, 162, 39, 0.2);
    --header-bg: rgba(20, 20, 25, 0.85);
}

/* 2. RETRO 95 (Safe Homage Style) */
[data-theme="retro95"] {
    --bg-color: #008080;
    /* Teal is generic retro color */
    --text-color: #000000;
    --accent-color: #000080;
    --accent-hover: #0000ff;
    --glass-bg: #c0c0c0;
    --border-color: #404040;
    --font-main: 'Courier New', monospace;
    /* Changed from System Font to generic monospace */
    --card-radius: 0px;
    --btn-radius: 0px;
    --shadow-glow: 2px 2px 0 #000;
    --header-bg: #c0c0c0;
}

[data-theme="retro95"] body {
    background-color: var(--bg-color);
    background-image: none !important;
}

/* Retro Bevel Effect (Pure CSS) */
[data-theme="retro95"] .studio-card,
[data-theme="retro95"] .nav-menu,
[data-theme="retro95"] .btn-primary,
[data-theme="retro95"] #studio-radio {
    background: #c0c0c0 !important;
    border-top: 2px solid #fff !important;
    border-left: 2px solid #fff !important;
    border-right: 2px solid #404040 !important;
    border-bottom: 2px solid #404040 !important;
    box-shadow: none !important;
    color: #000 !important;
    backdrop-filter: none !important;
}

[data-theme="retro95"] .nav-link,
[data-theme="retro95"] .nav-link span,
[data-theme="retro95"] .nav-link i,
[data-theme="retro95"] .dropdown-item {
    color: #000 !important;
    text-shadow: none !important;
}

[data-theme="retro95"] .btn-primary:active {
    border-top: 2px solid #404040 !important;
    border-left: 2px solid #404040 !important;
    border-right: 2px solid #fff !important;
    border-bottom: 2px solid #fff !important;
}

/* 3. NOSTALGIA BLUE (XP-Like Homage) */
[data-theme="legacy"] {
    --bg-color: #3b6ea5;
    --text-color: #000000;
    --accent-color: #45a432;
    /* Generic Grass Green */
    --accent-hover: #5bc944;
    --glass-bg: #fff;
    --border-color: #2b60de;
    --font-main: 'Verdana', sans-serif;
    --card-radius: 8px;
    --btn-radius: 5px;
    --shadow-glow: 0 4px 10px rgba(0, 0, 0, 0.3);
    --header-bg: linear-gradient(to bottom, #4a80d6 0%, #1d53b0 100%);
}

[data-theme="legacy"] body {
    /* CSS Generated Landscape instead of Copyrighted Image */
    background: linear-gradient(to bottom, #4a80d6 0%, #4a80d6 60%, #5bc944 60%, #45a432 100%);
    background-size: cover;
    background-attachment: fixed;
}

[data-theme="legacy"] .nav-menu {
    background: linear-gradient(to bottom, #4a80d6 0%, #1d53b0 100%) !important;
    border: 2px solid #fff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

[data-theme="legacy"] .studio-card {
    background: #fff !important;
    border: 3px solid #2b60de;
    border-radius: 8px 8px 0 0;
    color: #000;
}

[data-theme="legacy"] .studio-card h3 {
    background: linear-gradient(to right, #2b60de, #fff);
    color: #fff;
    padding: 8px;
    margin: -2rem -2rem 1rem -2rem;
    font-family: 'Verdana', sans-serif;
}

/* 4. ELITE MODE (Unlocked via ARG) */
[data-theme="elite"] {
    --bg-color: #000000;
    --text-color: #00ff00;
    --accent-color: #00ff00;
    --accent-hover: #ffffff;
    --glass-bg: rgba(0, 20, 0, 0.9);
    --border-color: #003300;
    --font-main: 'Courier New', monospace;
    --card-radius: 0px;
    --btn-radius: 0px;
    --shadow-glow: 0 0 10px #00ff00;
    --header-bg: #000000;
}

[data-theme="elite"] body {
    background-color: #000;
    background-image: linear-gradient(0deg, transparent 24%, rgba(0, 255, 0, .03) 25%, rgba(0, 255, 0, .03) 26%, transparent 27%, transparent 74%, rgba(0, 255, 0, .03) 75%, rgba(0, 255, 0, .03) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(0, 255, 0, .03) 25%, rgba(0, 255, 0, .03) 26%, transparent 27%, transparent 74%, rgba(0, 255, 0, .03) 75%, rgba(0, 255, 0, .03) 76%, transparent 77%, transparent) !important;
    background-size: 50px 50px !important;
}

[data-theme="elite"] .studio-card, 
[data-theme="elite"] .nav-dropdown .dropdown-content {
    border: 1px solid #00ff00;
    box-shadow: inset 0 0 10px #003300;
}

[data-theme="elite"] .btn-primary {
    background: #000;
    border: 1px solid #00ff00;
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 2px;
}

[data-theme="elite"] .btn-primary:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 20px #00ff00;
}