@charset "utf-8";
/* OSC-LEAKS Styled Version - Based on TemplateMo 605 Xmas Countdown */

:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 255, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-dim: rgba(255, 255, 255, 0.4);
    --accent-red: #ff3d5a;
    --accent-green: #00d4aa;
    --accent-gold: #ffd700;
    --accent-blue: #4d9fff;
    --glow-red: rgba(255, 61, 90, 0.4);
    --glow-green: rgba(0, 212, 170, 0.4);
    --glow-gold: rgba(255, 215, 0, 0.3);
    
    /* Page-specific accents */
    --bfdia-color: #ff3366;
    --ii-color: #ff6b35;
    --tpot-color: #3b82f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.grid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 61, 90, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
}

/* Floating Particles */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
}

/* Header/Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    transition: all 0.3s ease;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-svg {
    width: 44px;
    height: 44px;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.nav-link.active {
    color: var(--accent-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent-red);
    border-radius: 1px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b) !important;
    color: var(--text-primary) !important;
}

.nav-cta:hover {
    box-shadow: 0 8px 30px var(--glow-red);
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.menu-btn:hover {
    background: var(--bg-glass);
}

#mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 8px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border-glass);
    z-index: 1001;
}

#mobile-menu.active {
    right: 0;
}

#mobile-menu a {
    width: 100%;
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-glass);
    transition: color 0.3s ease;
}

#mobile-menu a:hover,
#mobile-menu a.active {
    color: var(--accent-red);
}

/* Main Section */
.section {
    position: relative;
    z-index: 2;
    padding: 140px 60px 100px;
    max-width: 100vw;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 100%;
    overflow: hidden;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text-primary);
    max-width: 100%;
    overflow-wrap: break-word;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Tabs System */
.mission-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.mission-tab {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 12px 28px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.mission-tab:hover {
    background: var(--bg-glass);
    border-color: var(--border-glow);
    color: var(--text-primary);
}

.mission-tab.active {
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
    border-color: var(--accent-red);
    color: var(--text-primary);
    box-shadow: 0 8px 30px var(--glow-red);
}

.mission-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.mission-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* File Items */
.file-item {
    background: var(--bg-glass);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.file-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-red), var(--accent-gold), transparent);
    opacity: 0.6;
}

.file-item:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--glow-red);
}

.file-item h3,
.file-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.file-item h3 {
    font-size: 1.8rem;
}

.file-item h4 {
    font-size: 1.4rem;
}

/* Video Containers */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.video-container video,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-container-fixed {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.video-container-fixed video,
.video-container-fixed iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
}

/* Recording Cards */
.recording-card {
    background: var(--bg-glass);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recording-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold), var(--accent-green));
}

.recording-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.recording-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.recording-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 1024px) {
    .recording-content {
        grid-template-columns: 1fr 1fr;
    }
}

.recording-video,
.recording-info {
    display: flex;
    flex-direction: column;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 2px solid transparent;
    gap: 8px;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
    color: var(--text-primary);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px var(--glow-red);
}

.cta-button.outline {
    background: transparent;
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.cta-button.outline:hover {
    background: var(--accent-red);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Status Badges */
.mission-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-green);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 20px;
}

.mission-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Image Grid */
.image-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.02);
}

/* Twitter Container */
.twitter-container {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-glass);
    margin: 20px 0;
    position: relative;
}

.twitter-container::before {
    content: '🐦';
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--bg-dark);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Q&A Sections */
.qa-section {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    border-left: 4px solid var(--accent-blue);
    position: relative;
}

.qa-section::before {
    content: '💬';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.2;
}

.qa-section h5 {
    color: var(--accent-blue);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.qa-section h5::before {
    content: 'Q:';
    font-size: 0.9rem;
    color: var(--accent-blue);
}

.qa-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 20px;
}

/* Informational Boxes */
.info-box {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    text-align: center;
    position: relative;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-gold));
}

.info-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
}

/* Color Themes */
.bfdia-theme .mission-tab.active,
.bfdia-theme .cta-button.primary {
    background: linear-gradient(135deg, var(--bfdia-color), #ff6b6b);
}

.bfdia-theme .nav-link.active {
    color: var(--bfdia-color);
}

.bfdia-theme .nav-link.active::after {
    background: var(--bfdia-color);
}

.ii-theme .mission-tab.active,
.ii-theme .cta-button.primary {
    background: linear-gradient(135deg, var(--ii-color), #ff8b5a);
}

.ii-theme .nav-link.active {
    color: var(--ii-color);
}

.ii-theme .nav-link.active::after {
    background: var(--ii-color);
}

.tpot-theme .mission-tab.active,
.tpot-theme .cta-button.primary {
    background: linear-gradient(135deg, var(--tpot-color), #60a5fa);
}

.tpot-theme .nav-link.active {
    color: var(--tpot-color);
}

.tpot-theme .nav-link.active::after {
    background: var(--tpot-color);
}

/* Theater Recording Styles */
.theater-recording {
    position: relative;
    overflow: hidden;
}

.theater-recording::before {
    content: '🎬 THEATER FOOTAGE';
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent-gold);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    border: 1px solid var(--accent-gold);
}

/* Download Grid */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.download-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.download-card h4 {
    color: var(--accent-red);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.download-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--glow-red);
}

/* Theater Clips Grid */
.theater-clips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.theater-clip {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.theater-clip::before {
    content: '🎬';
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0.5;
}

.theater-clip:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.theater-clip video {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.theater-clip p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: center;
}

/* Webrings & Buttons Iframe Container */
.webrings-iframe-container {
    width: 100%;
    height: 100vh;
    border: none;
    margin-top: 60px;
    background: var(--bg-dark);
}

#webringsFrame {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    position: relative;
    z-index: 2;
    padding: 80px 60px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-glass);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-column h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--accent-red);
    background: rgba(255, 61, 90, 0.1);
    color: var(--accent-red);
    transform: translateY(-4px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

/* BFDIA Page Specific */
.bfdia-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.bfdia-tab {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-weight: 600;
}

.bfdia-tab:hover {
    background: var(--bg-glass);
    color: var(--text-primary);
}

.bfdia-tab.active {
    background: linear-gradient(135deg, var(--bfdia-color), #ff6b6b);
    border-color: var(--bfdia-color);
    color: var(--text-primary);
    box-shadow: 0 8px 30px rgba(255, 51, 102, 0.3);
}

.bfdia-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.bfdia-content.active {
    display: block;
}

/* II Page Specific */
.ii-season-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.ii-season-tab {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 12px 28px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.ii-season-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ii-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ii-season-tab:hover {
    background: var(--bg-glass);
    color: var(--text-primary);
}

.ii-season-tab:hover::before {
    opacity: 1;
}

.ii-season-tab.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 139, 90, 0.1));
    border-color: var(--ii-color);
    color: #ff8b5a;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.ii-season-tab.active::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, #ff8b5a, transparent);
}

/* TPOT Page Specific */
.tpot-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tpot-tab {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 12px 32px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.tpot-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tpot-tab:hover {
    background: var(--bg-glass);
    color: var(--text-primary);
}

.tpot-tab:hover::before {
    opacity: 1;
}

.tpot-tab.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.1));
    border-color: var(--tpot-color);
    color: #60a5fa;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.tpot-tab.active::before {
    opacity: 1;
}

/* Production Frames */
.production-frames {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.production-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

.production-frame:hover {
    transform: scale(1.05);
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.production-frame img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.production-frame .frame-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-secondary);
    padding: 8px;
    font-size: 0.75rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section {
        padding: 100px 40px;
    }
    
    nav {
        padding: 15px 24px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 920px) {
    nav {
        padding: 15px 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
    
    .section {
        padding: 120px 24px 80px;
    }
    
    .file-item {
        padding: 24px;
    }
    
    .recording-card {
        padding: 24px;
    }
    
    .mission-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 100px 20px 60px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .mission-tabs,
    .bfdia-tabs,
    .ii-season-tabs,
    .tpot-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .mission-tab,
    .bfdia-tab,
    .ii-season-tab,
    .tpot-tab {
        text-align: center;
        width: 100%;
    }
    
    .recording-content {
        grid-template-columns: 1fr;
    }
    
    .download-grid,
    .theater-clips-grid {
        grid-template-columns: 1fr;
    }
    
    footer {
        padding: 60px 24px 24px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 80px 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .file-item {
        padding: 20px;
    }
    
    .recording-card {
        padding: 20px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .video-container-fixed {
        max-width: 100%;
    }
    
    .production-frames {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-16 {
    margin-top: 4rem;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-2 {
    gap: 0.5rem;
}

.rounded-lg {
    border-radius: 12px;
}

.rounded-xl {
    border-radius: 16px;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.block {
    display: block;
}

.w-full {
    width: 100%;
}

.max-w-800 {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.text-gray-200 {
    color: rgba(255, 255, 255, 0.8);
}

.text-gray-300 {
    color: rgba(255, 255, 255, 0.6);
}

.text-gray-400 {
    color: rgba(255, 255, 255, 0.4);
}

.text-green-300 {
    color: #86efac;
}

.text-red-300 {
    color: #fca5a5;
}

.text-blue-300 {
    color: #93c5fd;
}

.text-yellow-300 {
    color: #fde047;
}

.text-purple-300 {
    color: #d8b4fe;
}

.text-pink-300 {
    color: #f9a8d4;
}

.text-indigo-300 {
    color: #a5b4fc;
}

.text-teal-300 {
    color: #5eead4;
}

.text-amber-300 {
    color: #fcd34d;
}

.text-rose-300 {
    color: #fda4af;
}

.text-lime-300 {
    color: #bef264;
}

.text-cyan-300 {
    color: #67e8f9;
}

.text-green-400 {
    color: #4ade80;
}

.text-blue-400 {
    color: #60a5fa;
}

.text-orange-400 {
    color: #fb923c;
}

.text-red-400 {
    color: #f87171;
}

.bg-green-500\/10 {
    background-color: rgba(34, 197, 94, 0.1);
}

.bg-blue-500\/10 {
    background-color: rgba(59, 130, 246, 0.1);
}

.bg-gray-700\/50 {
    background-color: rgba(55, 65, 81, 0.5);
}

.border-l-4 {
    border-left-width: 4px;
}

.border-green-500 {
    border-color: #10b981;
}

.border-blue-500 {
    border-color: #3b82f6;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.aspect-video {
    aspect-ratio: 16/9;
}

.object-cover {
    object-fit: cover;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.hover\:transform:hover {
    transform: translateY(-2px);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}