@font-face {
    font-family: 'Desire';
    src: url('DESIB.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #111827;
    color: #d1d5db;
    overflow-x: hidden;
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.font-vhs {
    font-family: 'Desire', monospace;
}

.text-glow-cyan {
    text-shadow: 0 0 5px rgba(0, 255, 249, 0.7), 0 0 10px rgba(0, 255, 249, 0.5);
}

.nav-link {
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-image: linear-gradient(to right, #00fff9, #ff00c1);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


.glass-effect {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 249, 0.2);
}

.media-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.media-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 15px #00fff9, 0 0 25px #ff00c1;
}

.is-delisted {
    opacity: 0.5;
    cursor: not-allowed;
}

.is-delisted:hover {
    transform: none;
    box-shadow: none;
}

.progress-bar-container {
    background-color: rgba(31, 41, 55, 0.5);
    border: 1px solid #00fff9;
}

.progress-bar {
    background-color: #00fff9;
    box-shadow: 0 0 10px #00fff9;
    transition: width 0.5s ease-in-out;
}

.btn-glow {
    box-shadow: 0 0 5px #00fff9, 0 0 10px #00fff9;
    animation: pulse-glow 2s infinite alternate;
    border: 1px solid #00fff9;
    transition: all 0.3s ease-in-out;
}

.btn-glow:hover {
    box-shadow: 0 0 15px #00fff9, 0 0 25px #00fff9, 0 0 35px #ff00c1;
}

.btn-glow-secondary {
     transition: all 0.3s ease-in-out;
}

.btn-glow-secondary:hover {
     box-shadow: 0 0 10px #00fff9, 0 0 15px #00fff9;
     border-color: #00fff9;
     color: #fff;
}

.btn-glow-success {
    box-shadow: 0 0 10px #10b981;
    border: 1px solid #10b981;
}
.btn-glow-success:hover {
    box-shadow: 0 0 15px #10b981, 0 0 25px #10b981;
}

@keyframes pulse-glow {
    from {
        box-shadow: 0 0 5px #00fff9, 0 0 10px #00fff9;
    }
    to {
        box-shadow: 0 0 15px #00fff9, 0 0 25px #00fff9;
    }
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1f2937;
}
::-webkit-scrollbar-thumb {
    background: #00fff9;
    border-radius: 4px;
    box-shadow: 0 0 5px #00fff9;
}
::-webkit-scrollbar-thumb:hover {
    background: #7dd3fc;
}

.premiere-tag {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f59e0b;
    color: #111827;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 8px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    font-family: 'Desire', monospace;
    z-index: 10;
}

.exclusive-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff00c1;
    color: #111827;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 8px;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    font-family: 'Desire', monospace;
    z-index: 10;
}