/* Lamurit AI - Genius Theme (Golden/Premium) */
.theme-genius {
    --primary-color: #f59e0b;
    /* Amber 500 */
    --primary-glow: rgba(245, 158, 11, 0.5);
    --bg-deep: #0f172a;
}

/* Global Overrides for Genius */
.theme-genius .text-primary {
    color: #f59e0b !important;
}

.theme-genius .bg-primary {
    background-color: #f59e0b !important;
}

.theme-genius .border-primary {
    border-color: #f59e0b !important;
}

/* Golden Glow Effects */
.theme-genius .glassmorphism {
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 8px 32px 0 rgba(245, 158, 11, 0.1);
}

.theme-genius .pulse-glow {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    animation: golden-pulse 2s infinite;
}

@keyframes golden-pulse {
    0% {
        box-shadow: 0 0 5px rgba(245, 158, 11, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
    }

    100% {
        box-shadow: 0 0 5px rgba(245, 158, 11, 0.4);
    }
}

/* Model Cards */
.model-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.model-card:hover:not(.locked) {
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(168, 85, 247, 0.3);
}

.model-card.active {
    border-color: #f59e0b;
    /* Amber-500 */
    background: rgba(245, 158, 11, 0.1);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.model-card.locked {
    cursor: not-allowed;
    filter: grayscale(0.5);
}

/* Drawing Canvas */
#drawing-canvas-container {
    background-image: radial-gradient(#334155 1px, transparent 1px);
    background-size: 20px 20px;
}