:root {
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --glass: rgba(18, 18, 18, 0.6);
}

@import "tailwindcss";

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
}

.font-cinzel { font-family: 'Cinzel', serif; }
.font-playfair { font-family: 'Playfair Display', serif; }

.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }
.border-gold { border-color: var(--gold); }

/* Glassmorphism */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card {
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Sidebar Nav */
.nav-item {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    items-center: center;
    gap: 1rem;
    color: #a1a1aa;
    transition: all 0.3s;
    font-weight: 500;
}

.nav-item:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.nav-item.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 10px;
}

.custom-scrollbar-h::-webkit-scrollbar {
    height: 4px;
}

.custom-scrollbar-h::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 10px;
}

/* Pipeline Steps */
.pipeline-step {
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.5s;
}

.step-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
}

.check-icon {
    display: none;
}

.pipeline-step.active {
    border-color: var(--gold-glow);
    background: rgba(212, 175, 55, 0.05);
    color: var(--gold);
}

.pipeline-step.completed {
    color: #10b981;
}

.pipeline-step.completed .check-icon {
    display: block;
}

.pipeline-step.completed .step-indicator {
    display: none;
}

/* Scene Cards */
.scene-card {
    flex: 0 0 280px;
    height: 180px;
    background: #09090b;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.scene-card:hover {
    border-color: var(--gold);
}

.scene-card.active {
    ring: 2px solid var(--gold);
    ring-offset: 2px;
}

.scene-status {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 800;
    backdrop-filter: blur(4px);
}

/* Animations */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, #09090b 25%, #18181b 37%, #09090b 63%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

button:active {
    transform: scale(0.95);
}

@media (max-width: 1024px) {
    .view {
        padding-top: 2rem;
    }
}
