/* VJ Studio Custom Styles */
/* Note: Using regular CSS since @apply doesn't work with Tailwind CDN */

/* Stage glow effect for hero video */
.hero-glow {
    box-shadow:
        0 0 30px rgba(155, 77, 202, 0.3),
        0 0 60px rgba(255, 0, 255, 0.2),
        0 0 90px rgba(0, 255, 255, 0.1);
}

/* Filter tag buttons */
.filter-tag {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
    background-color: #1a1a24;
    border-radius: 9999px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.filter-tag:hover {
    background-color: #222230;
    color: white;
}

.filter-tag.active {
    background: linear-gradient(to right, #ff00ff, #00ffff);
    color: black;
}

/* Duration and aspect ratio toggle buttons */
.duration-btn,
.aspect-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
    background-color: #050508;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.2s;
    cursor: pointer;
}

.duration-btn:hover,
.aspect-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.duration-btn.active,
.aspect-btn.active {
    border-color: #00ffff;
    color: #00ffff;
}

/* Sample card */
.sample-card {
    background-color: #1a1a24;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.sample-card:hover {
    background-color: #222230;
    transform: scale(1.02);
}

.sample-card .thumbnail {
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}

.sample-card .thumbnail video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
}

.sample-card:hover .thumbnail video {
    opacity: 1;
}

.sample-card .meta {
    padding: 1rem;
}

.sample-card .meta h3 {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0.025em;
    margin-bottom: 0.5rem;
}

.sample-card .meta .details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', Consolas, monospace;
    color: #6b7280;
}

/* Progress steps */
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.progress-step .step-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background-color: #1a1a24;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}

.progress-step.active .step-indicator {
    border-color: #00ffff;
    background-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.progress-step.completed .step-indicator {
    border-color: #00ffff;
    background-color: #00ffff;
}

.progress-step .step-label {
    font-size: 0.75rem;
    color: #6b7280;
    transition: color 0.2s;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: white;
}

/* Drop zone animations */
#drop-zone.dragover {
    border-color: #00ffff;
    background-color: rgba(0, 255, 255, 0.05);
    animation: border-dance 1s linear infinite;
}

@keyframes border-dance {
    0%, 100% { border-color: #ff00ff; }
    50% { border-color: #00ffff; }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* Focus states */
input:focus,
select:focus,
button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.5);
}

/* Selection */
::selection {
    background: rgba(0, 255, 255, 0.3);
}
