/* TRAP DEATH OFFICIAL STYLESHEET
   Location: css_java/style.css
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&family=Oswald:wght@200;500;700&display=swap');

:root {
    --primary: #d92e2e;
    --bg-dark: #050505;
    --card-bg: #0d0d0d;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.oswald { font-family: 'Oswald', sans-serif; }

nav {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-title {
    background: linear-gradient(to bottom, #ffffff 50%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.85;
    letter-spacing: -0.05em;
}

.video-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
}

.iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-link-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    background: rgba(217, 46, 46, 0.9);
    color: white;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.status-badge {
    font-size: 8px;
    padding: 2px 10px;
    border-radius: 1px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 900;
}

.badge-upcoming { border: 1px solid #3b82f6; color: #3b82f6; }
.badge-available { border: 1px solid #22c55e; color: #22c55e; }

#loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease;
}

/* Scrollbar Styles */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #333; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }