/* SlapCity Unified Stylesheet */
/* Enhanced Global Styles */
:root {
    --primary-color: #e50914;
    --primary-dark: #b8070f;
    --primary-light: #ff1a25;
    --secondary-color: #1a1a1a;
    --secondary-dark: #0f0f0f;
    --secondary-light: #2a2a2a;
    --text-light: #ffffff;
    --text-dark: #111111;
    --bg-dark: #000000;
    --bg-light: #f5f5f5;
    --danger: #dc3545;
    --success: #28a745;
    --border-color: #333333;
    --input-bg: #1a1a1a;
    --glass-bg: rgba(26, 26, 26, 0.8);
    --shadow-light: rgba(229, 9, 20, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-dark) 50%, var(--secondary-color) 100%);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--text-light);
}

ul {
    list-style: none;
}

/* ===== UNIFIED HEADER ===== */
 header {
            background-color: var(--bg-dark);
            padding: 15px 0;
            border-bottom: 2px solid var(--primary-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        /* Logo Section */
        .logo h1 {
            font-size: 1.8rem;
            margin: 0;
            color: var(--primary-color);
            font-weight: 700;
            white-space: nowrap;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
        }

        .desktop-nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 10px;
        }

        .desktop-nav ul li a {
            font-weight: 600;
            transition: color 0.3s ease;
            color: #999;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 6px;
            white-space: nowrap;
        }

        .desktop-nav ul li a:hover {
            color: var(--primary-color);
            background: rgba(229, 9, 20, 0.1);
        }

        .desktop-nav ul li a.active {
            color: var(--primary-color);
        }

        /* User Section - Right Side */
        .user-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Guest Navigation */
        .guest-nav {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .login-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--text-light);
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            transition: var(--transition);
            box-shadow: 0 4px 15px var(--shadow-light);
            white-space: nowrap;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--shadow-light);
        }

        /* User Profile (Authenticated) */
        .profile-container {
            position: relative;
            display: none; /* Hidden by default */
        }

        .profile-trigger {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 2px 4px;
            border-radius: 12.5px;
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            border: 2px solid var(--border-color);
            cursor: pointer;
            min-width: 120px;
            white-space: nowrap;
        }

        .profile-trigger:hover {
            background: rgba(229, 9, 20, 0.1);
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--shadow-light);
        }

        .user-avatar {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-weight: 800;
            font-size: 16px;
            box-shadow: 0 4px 15px var(--shadow-light);
            transition: var(--transition);
            flex-shrink: 0;
        }

        .profile-trigger:hover .user-avatar {
            transform: scale(1.1);
            box-shadow: 0 6px 20px var(--shadow-light);
        }

        .user-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
            min-width: 0;
        }

        .user-name {
            font-weight: 700;
            font-size: 14px;
            line-height: 1;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .user-credits {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--primary-color);
            font-weight: 600;
        }

        .credits-icon {
            font-size: 14px;
            filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
        }

        .dropdown-arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .profile-container.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: calc(100% + 15px);
            right: 0;
            background: var(--glass-bg);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 2px solid var(--border-color);
            border-radius: 16px;
            padding: 12px 0;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-15px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .profile-container.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
        }

        .dropdown-item:hover {
            background: rgba(229, 9, 20, 0.1);
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .dropdown-item.danger:hover {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
        }

        .dropdown-item-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .dropdown-divider {
            height: 1px;
            background: var(--border-color);
            margin: 8px 0;
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
        }

        /* Visibility Classes */
        .guest-only {
            display: flex !important;
        }

        .auth-only {
            display: none !important;
        }

        .admin-only {
            display: none !important;
        }

        /* When authenticated */
        body.authenticated .guest-only {
            display: none !important;
        }

        body.authenticated .auth-only {
            display: flex !important;
        }

        body.authenticated .profile-container {
            display: block !important;
        }

        body.admin .admin-only {
            display: flex !important;
        }

        /* Mobile burger menu */
        .burger-menu {
            background: none;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 12px;
            transition: var(--transition);
            position: relative;
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
        }

        .burger-menu:hover {
            background: rgba(229, 9, 20, 0.1);
            transform: scale(1.05);
        }

        .burger-icon {
            width: 28px;
            height: 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .burger-icon span {
            display: block;
            height: 3px;
            width: 100%;
            background: var(--text-light);
            border-radius: 2px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-origin: center;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1024px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-nav {
                display: block;
            }
            
            .user-info {
                display: none;
            }
            
            .profile-trigger {
                padding: 6px 12px;
                min-width: auto;
            }

            /* Show mobile user info only on mobile */
            .mobile-user-info {
                display: block !important;
            }
        }

        @media (max-width: 768px) {
            .dropdown-menu {
                min-width: 200px;
                right: -10px;
            }
        }

        @media (max-width: 480px) {
            .logo h1 {
                font-size: 1.5rem;
            }
        }

/* ===== UNIFIED FOOTER ===== */
footer {
    background: var(--bg-dark);
    border-top: 2px solid var(--primary-color);
    padding: 80px 0 40px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 800;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links h3, .footer-contact h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== HERO SECTIONS ===== */
.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-dark) 50%, var(--secondary-color) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(229, 9, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(229, 9, 20, 0.08) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    box-shadow: 0 8px 25px var(--shadow-light);
    animation: slideUp 0.8s ease-out;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
    letter-spacing: -2px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.8s both;
}

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

/* ===== PAGE HEADERS ===== */
.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-dark) 50%, var(--secondary-color) 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(229, 9, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
    letter-spacing: -2px;
}

.page-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--secondary-color);
}

.section:nth-child(odd) {
    background: var(--secondary-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-light), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-light);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--text-light);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--input-bg);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
    background: var(--secondary-color);
}

.form-control::placeholder {
    color: #666;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* ===== GLASS CARD STYLES ===== */
.content-block, .feature-card, .video-preview {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.content-block::before, .feature-card::before, .video-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    z-index: 1;
}

.content-block:hover::before, .feature-card:hover::before, .video-preview:hover::before {
    opacity: 1;
}

.content-block:hover, .feature-card:hover, .video-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px var(--shadow-dark), 0 10px 30px var(--shadow-light);
    border-color: var(--primary-color);
}

.content-block h3, .feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.content-block h3 {
    font-size: 28px;
}

.feature-card h4 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.content-block p, .feature-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.emphasis-text {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(229, 9, 20, 0.3);
}

/* ===== GRID LAYOUTS ===== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* ===== FEATURE ICONS ===== */
.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    fill: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.5));
}

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

/* ===== SINGLE COLUMN CONTENT ===== */
.single-column {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.single-column h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.single-column p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

/* ===== AUTHENTICATION PAGES ===== */
.auth-container {
    max-width: 500px;
    width: 100%;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 25px 50px var(--shadow-dark);
    border: 1px solid var(--border-color);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 10px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
    margin-top: 2px;
}

.form-check-label {
    color: var(--text-light);
    font-size: 0.95rem;
    cursor: pointer;
    line-height: 1.4;
}

.form-check-label .required {
    color: var(--primary-color);
    font-weight: 600;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: var(--primary-light);
}

/* ===== RECRUITMENT PAGE SPECIFIC ===== */
.recruitment-section {
    padding: 80px 0;
    background: var(--secondary-color);
    position: relative;
}

.recruitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.recruitment-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--text-light), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.recruitment-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 25px;
}

.recruitment-description p {
    margin-bottom: 20px;
}

.recruitment-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.recruitment-cta {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 40px;
}

/* Send Application Button */
.btn-send-application,
input[type="submit"][value="Send Application"],
button[type="submit"]:contains("Send Application"),
button:contains("Send Application") {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-light);
    margin-top: 20px;
}

.btn-send-application::before,
input[type="submit"][value="Send Application"]::before,
button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-send-application:hover::before,
input[type="submit"][value="Send Application"]:hover::before,
button[type="submit"]:hover::before {
    left: 100%;
}

.btn-send-application:hover,
input[type="submit"][value="Send Application"]:hover,
button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-light);
}

.btn-send-application:disabled,
input[type="submit"][value="Send Application"]:disabled,
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Application Form Styling */
.application-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px var(--shadow-dark);
    margin-top: 40px;
}

.application-form h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.application-form .form-group {
    margin-bottom: 25px;
}

.application-form .form-label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.application-form .form-control {
    width: 100%;
    padding: 16px 20px;
    background: var(--input-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
}

.application-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
    outline: none;
}

.application-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

/* Tell Us About Yourself Section */
.about-yourself-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.about-yourself-title {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-yourself-description {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-yourself-textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px 20px;
    background: var(--input-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
    resize: vertical;
    font-family: inherit;
}

.about-yourself-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
    outline: none;
}

.about-yourself-textarea::placeholder {
    color: #666;
    font-style: italic;
}

/* Generic button targeting for recruitment */
form button[type="submit"],
form input[type="submit"],
.recruitment-section button,
.recruitment-section input[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-light);
    margin-top: 20px;
}

form button[type="submit"]:hover,
form input[type="submit"]:hover,
.recruitment-section button:hover,
.recruitment-section input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-light);
}

/* ===== RECRUITMENT/MULTI-STEP FORMS ===== */
.main-layout {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 160px);
}

.info-sidebar {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--bg-dark) 50%, var(--secondary-dark) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.info-sidebar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.05) 20%, transparent 20%);
    background-size: 40px 40px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-40px, -40px); }
}

.sidebar-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.sidebar-header {
    text-align: left;
}

.sidebar-badge {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.sidebar-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.sidebar-description {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Timeline Progress */
.timeline-container {
    margin-bottom: 3rem;
}

.timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--border-color);
    transform: translateY(-50%);
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: translateY(-50%);
    width: 0%;
    transition: width 0.5s ease;
}

.timeline-step {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--border-color);
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    cursor: pointer;
    margin: 0 2rem;
}

.timeline-step.active {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

.timeline-step.completed {
    background: var(--success);
    color: var(--text-light);
}

.timeline-step.completed::before {
    content: '✓';
    font-size: 1.8rem;
}

/* ===== FIGHTERS PAGE ===== */
.fighters-section {
    padding: 100px 0;
    background: var(--secondary-color);
    position: relative;
}

.fighters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(229, 9, 20, 0.01) 50px,
            rgba(229, 9, 20, 0.01) 100px
        );
}

.fighters-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Fighter Cards Grid */
.fighters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.fighter-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-color);
    position: relative;
    transform-style: preserve-3d;
}

.fighter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    z-index: 1;
}

.fighter-card:hover::before {
    opacity: 1;
}

.fighter-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px var(--shadow-dark), 0 15px 40px var(--shadow-light);
    border-color: var(--primary-color);
}

.fighter-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-light));
}

.fighter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fighter-card:hover .fighter-image img {
    transform: scale(1.1);
}

.fighter-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.fighter-status.active {
    background: var(--success);
    color: var(--text-light);
}

.fighter-status.inactive {
    background: var(--danger);
    color: var(--text-light);
}

.fighter-rank {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.fighter-info {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.fighter-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.fighter-nickname {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.fighter-record {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

.record-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-light);
    display: block;
}

.record-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.record-item.wins .record-number {
    color: var(--success);
}

.record-item.losses .record-number {
    color: var(--danger);
}

.record-item.draws .record-number {
    color: #ffa502;
}

.fighter-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-profile-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.view-profile-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.view-profile-btn:hover::before {
    left: 100%;
}

.view-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-light);
}

/* Fighter Detail Modal */
.fighter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
}

.fighter-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--border-color);
    position: relative;
    animation: modalSlideIn 0.5s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.close-modal:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.modal-body {
    padding: 40px;
}

.fighter-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.detail-section h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #999;
    font-weight: 600;
}

.detail-value {
    color: var(--text-light);
    font-weight: 700;
}

.fighter-bio {
    margin-top: 30px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.fighter-bio h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.fighter-bio p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Legacy fighter card support */
.custom-card-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.custom-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.custom-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-color);
    position: relative;
}

.custom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    z-index: 1;
}

.custom-card:hover::before {
    opacity: 1;
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-dark), 0 10px 30px var(--shadow-light);
    border-color: var(--primary-color);
}

.custom-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.custom-card:hover img {
    transform: scale(1.05);
}

.custom-card h3 {
    padding: 20px 20px 10px;
    color: var(--text-light);
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.custom-card .record {
    padding: 0 20px 20px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* ===== CONTACT PAGE ===== */
.main-content {
    display: flex;
    min-height: calc(100vh - 160px);
    gap: 3rem;
    padding: 3rem 0;
}

.contact-info-section {
    flex: 1;
    padding: 2rem;
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-label {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
}

.contact-details h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #999;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-form-section {
    flex: 1;
    padding: 2rem;
}

.form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

/* ===== MESSAGES & LOADING ===== */
.message, .response-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.message.error, .response-message.error {
    background-color: var(--danger);
    color: var(--text-light);
    border: 1px solid #c82333;
}

.message.success, .response-message.success {
    background-color: var(--success);
    color: var(--text-light);
    border: 1px solid #1e7e34;
}

.loading {
    display: none;
    margin-left: 8px;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--text-light);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== CTA SECTIONS ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== VIDEO SECTIONS ===== */
.featured-videos {
    padding: 100px 0;
    background: var(--secondary-color);
    position: relative;
}

.featured-videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(229, 9, 20, 0.01) 50px,
            rgba(229, 9, 20, 0.01) 100px
        );
}

.featured-videos .container {
    position: relative;
    z-index: 2;
}

.featured-videos h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-light), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.video-preview {
    cursor: pointer;
    transform-style: preserve-3d;
}

.video-preview:hover {
    transform: translateY(-10px) rotateX(2deg);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-light));
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-preview:hover .video-thumbnail img {
    transform: scale(1.05);
}

.price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px var(--shadow-light);
    z-index: 2;
}

.video-info {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.video-info h3 {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 20px;
    font-weight: 700;
}

.video-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ===== TRAILER BANNER ===== */
.trailer-banner {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.trailer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.1), transparent);
    animation: sweep 3s infinite;
}

@keyframes sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.trailer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.trailer-text {
    flex: 1;
}

.trailer-title {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.trailer-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.trailer-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.trailer-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-light);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: var(--secondary-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Inter', monospace;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ===== REVIEWS SLIDER ===== */
.reviews-slider {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 0 20px rgba(229, 9, 20, 0.2),
        inset 0 0 20px rgba(229, 9, 20, 0.05);
}

.reviews-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 48px;
    align-items: center;
}

.review-item {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 16px 24px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 12px;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
}

.review-item:hover {
    transform: translateY(-2px);
    background: rgba(229, 9, 20, 0.2);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.review-stars {
    color: var(--primary-color);
    font-size: 18px;
    text-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

.review-text {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
}

.review-author {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== CUSTOM REQUESTS / MULTI-STEP FORMS ===== */
.main-layout {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 160px);
}

.info-sidebar {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--bg-dark) 50%, var(--secondary-dark) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.info-sidebar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.05) 20%, transparent 20%);
    background-size: 40px 40px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-40px, -40px); }
}

.sidebar-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.sidebar-header {
    text-align: left;
}

.sidebar-badge {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.sidebar-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.sidebar-description {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Right Side - Stacked Info */
.sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Dynamic Step Info */
.step-info {
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-info-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-info-content {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
}

.step-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 0.9rem;
}

.step-features li::before {
    content: '▶';
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Pricing Preview */
.pricing-preview {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(229, 9, 20, 0.05));
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    text-align: center;
}

.pricing-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-range {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.pricing-note {
    color: #999;
    font-size: 0.9rem;
}

/* Form Area */
.form-area {
    background: var(--secondary-color);
    padding: 4rem 0;
    flex: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.form-subtitle {
    color: #999;
    font-size: 1.1rem;
}

/* Timeline Progress */
.timeline-container {
    margin-bottom: 3rem;
}

.timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--border-color);
    transform: translateY(-50%);
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: translateY(-50%);
    width: 0%;
    transition: width 0.5s ease;
}

.timeline-step {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--border-color);
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    cursor: pointer;
    margin: 0 2rem;
}

.timeline-step.active {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

.timeline-step.completed {
    background: var(--success);
    color: var(--text-light);
}

.timeline-step.completed::before {
    content: '✓';
    font-size: 1.8rem;
}

.timeline-step-number {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.timeline-step-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Container */
.form-container {
    flex: 1;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInSlide 0.5s ease;
}

.form-step.active {
    display: block;

}

  .age-verification-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.5s ease-out;
        }

        .age-verification-modal {
            background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #2a2a2a 100%);
            border: 2px solid #e50914;
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(229, 9, 20, 0.2);
        }

        .age-verification-modal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(229, 9, 20, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite alternate;
        }

        .age-verification-content {
            position: relative;
            z-index: 2;
        }

        .age-verification-logo {
            font-size: 2.5rem;
            font-weight: 800;
            color: #e50914;
            margin-bottom: 20px;
            text-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
        }

        .age-verification-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .age-verification-text {
            font-size: 1rem;
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .age-verification-warning {
            background: rgba(229, 9, 20, 0.1);
            border: 1px solid #e50914;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 30px;
            font-size: 0.9rem;
            color: #ffffff;
            line-height: 1.5;
        }

        .age-verification-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .age-btn {
            padding: 16px 32px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-width: 140px;
        }

        .age-btn-yes {
            background: linear-gradient(135deg, #28a745, #1e7e34);
            color: #ffffff;
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
        }

        .age-btn-yes:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
        }

        .age-btn-no {
            background: linear-gradient(135deg, #e50914, #b8070f);
            color: #ffffff;
            box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
        }

        .age-btn-no:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(229, 9, 20, 0.4);
        }

        .age-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .age-btn:hover::before {
            left: 100%;
        }

        /* Access Denied Page */
        .access-denied {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0f0f0f 100%);
            z-index: 10001;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            text-align: center;
        }

        .access-denied-content {
            max-width: 600px;
            width: 100%;
        }

        .access-denied-icon {
            font-size: 4rem;
            color: #e50914;
            margin-bottom: 30px;
            text-shadow: 0 0 30px rgba(229, 9, 20, 0.5);
        }

        .access-denied-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .access-denied-text {
            font-size: 1.2rem;
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .access-denied-suggestions {
            background: rgba(229, 9, 20, 0.1);
            border: 1px solid #e50914;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            text-align: left;
        }

        .access-denied-suggestions h3 {
            color: #e50914;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .access-denied-suggestions ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .access-denied-suggestions li {
            color: #ffffff;
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .access-denied-suggestions li::before {
            content: '▶';
            color: #e50914;
            position: absolute;
            left: 0;
            top: 0;
        }

        .go-back-btn {
            background: linear-gradient(135deg, #e50914, #b8070f);
            color: #ffffff;
            padding: 16px 32px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
        }

        .go-back-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(229, 9, 20, 0.4);
        }

        /* Hide main content initially */
        .main-content-wrapper {
            display: none;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse {
            0% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .age-verification-modal {
                padding: 30px 20px;
                margin: 10px;
            }

            .age-verification-logo {
                font-size: 2rem;
            }

            .age-verification-title {
                font-size: 1.5rem;
            }

            .age-verification-buttons {
                flex-direction: column;
                align-items: center;
            }

            .age-btn {
                width: 100%;
                max-width: 200px;
            }

            .access-denied-title {
                font-size: 2rem;
            }

            .access-denied-icon {
                font-size: 3rem;
            }
        }


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

.step-content {
    background: var(--bg-dark);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.step-number {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.step-title {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-description {
    color: #999;
    font-size: 1rem;
}

/* Content Type Selection */
.content-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.content-type {
    padding: 1.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--input-bg);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.content-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
    z-index: 1;
}

.content-type:hover::before {
    opacity: 1;
}

.content-type:hover {
    border-color: var(--primary-color);
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.content-type.selected {
    border-color: var(--primary-color);
    background: rgba(229, 9, 20, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.content-type.selected::before {
    opacity: 1;
}

.content-type input {
    display: none;
}

.content-type-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    position: relative;
    z-index: 2;
}

.content-type-title {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Action Buttons */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Update existing btn styles for form actions */
.form-actions .btn {
    flex: 1;
    max-width: 180px;
}

.btn-secondary {
    background: var(--border-color);
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
 


/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .sidebar-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-layout {
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .main-layout {
        flex-direction: column;
    }
    
    .info-sidebar {
        order: 2;
        border-right: none;
        border-top: 1px solid var(--border-color);
    }
    
    .form-area {
        order: 1;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .content-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    nav ul {
        margin-top: 1rem;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0 0.75rem;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trailer-content {
        flex-direction: column;
        text-align: center;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .single-column {
        padding: 30px;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 1rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .timeline-step {
        width: 60px;
        height: 60px;
        margin: 0 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        max-width: none;
    }
    
    .content-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    nav ul li {
        margin: 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

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

    .single-column {
        padding: 25px;
    }

    .feature-card {
        padding: 30px;
    }

    .contact-items {
        gap: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-step {
        width: 50px;
        height: 50px;
        margin: 0 0.5rem;
    }

    .timeline-step-label {
        display: none;
    }

    .btn {
        max-width: none;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
nav ul li a:focus,
.form-control:focus,
.form-check-input:focus,
.view-profile-btn:focus,
.close-modal:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #666666;
        --glass-bg: rgba(0, 0, 0, 0.9);
    }
}

/* Dark mode adjustments (already dark by default) */
@media (prefers-color-scheme: light) {
    /* Optional: Add light theme overrides if needed */
}

/* Print styles */
@media print {
    .hero::before,
    .page-header::before,
    .info-sidebar::before {
        display: none;
    }
    
    .btn {
        background: transparent !important;
        color: #000 !important;
        border: 1px solid #000 !important;
    }
    
    nav,
    .hero-buttons,
    footer {
        display: none;
    }
}

/* ===== MOBILE NAVIGATION ===== */
:root {
    --primary-color: #e50914;
    --primary-dark: #b8070f;
    --primary-light: #ff1a25;
    --secondary-color: #1a1a1a;
    --secondary-dark: #0f0f0f;
    --secondary-light: #2a2a2a;
    --text-light: #ffffff;
    --text-dark: #111111;
    --bg-dark: #000000;
    --bg-light: #f5f5f5;
    --danger: #dc3545;
    --success: #28a745;
    --border-color: #333333;
    --input-bg: #1a1a1a;
    --glass-bg: rgba(26, 26, 26, 0.95);
    --shadow-light: rgba(229, 9, 20, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-dark) 50%, var(--secondary-color) 100%);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--text-light);
}

ul {
    list-style: none;
}

/* ===== UNIFIED HEADER ===== */
header {
    background-color: var(--bg-dark);
    padding: 15px 0;
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 8px 32px var(--shadow-dark);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Desktop Navigation */
.desktop-nav ul {
    display: flex;
}

.desktop-nav ul li {
    margin-left: 1.5rem;
}

.desktop-nav ul li a {
    font-weight: 600;
    transition: color 0.3s ease;
    color: #999;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
}

.desktop-nav ul li a:hover {
    color: var(--primary-color);
    background: rgba(229, 9, 20, 0.1);
}

.desktop-nav ul li a.active {
    color: var(--primary-color);
}

/* Hide desktop nav on mobile */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
}

/* Show mobile nav only on mobile */
.mobile-nav {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-nav {
        display: block;
    }
}

/* ===== ENHANCED BURGER MENU BUTTON ===== */
.burger-menu {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.burger-menu:hover {
    background: rgba(229, 9, 20, 0.1);
    transform: scale(1.05);
}

.burger-icon {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* Enhanced burger animation */
.burger-menu.active .burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary-color);
    width: 24px;
}

.burger-menu.active .burger-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(30px) scale(0);
}

.burger-menu.active .burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary-color);
    width: 24px;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== ENHANCED MOBILE MENU PANEL ===== */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(400px, 90vw);
    height: 100%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--secondary-dark) 50%, var(--bg-dark) 100%);
    border-left: 3px solid var(--primary-color);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        -20px 0 60px rgba(0, 0, 0, 0.8),
        -10px 0 30px rgba(229, 9, 20, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

/* ===== ENHANCED MOBILE MENU HEADER ===== */
.mobile-menu-header {
    padding: 30px 25px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.mobile-menu-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: headerFloat 8s ease-in-out infinite alternate;
}

@keyframes headerFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-10px, -10px) rotate(1deg); }
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.menu-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 8px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.menu-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 1px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(90deg);
}

/* ===== USER INFO SECTION ===== */
.user-info {
    padding: 25px;
    background: rgba(229, 9, 20, 0.1);
    border-bottom: 1px solid var(--border-color);
    margin: 0;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 15px;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.user-details h4 {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.user-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
}

/* ===== MOBILE MENU CONTENT ===== */
.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.mobile-menu-content::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu-content::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-menu-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav ul li {
    margin-bottom: 5px;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInMenuItem 0.6s ease forwards;
}

/* Staggered animation delays */
.mobile-menu-panel.active .mobile-menu-nav ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-panel.active .mobile-menu-nav ul li:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu-panel.active .mobile-menu-nav ul li:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu-panel.active .mobile-menu-nav ul li:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu-panel.active .mobile-menu-nav ul li:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu-panel.active .mobile-menu-nav ul li:nth-child(6) { animation-delay: 0.35s; }
.mobile-menu-panel.active .mobile-menu-nav ul li:nth-child(7) { animation-delay: 0.4s; }
.mobile-menu-panel.active .mobile-menu-nav ul li:nth-child(8) { animation-delay: 0.45s; }
.mobile-menu-panel.active .mobile-menu-nav ul li:nth-child(9) { animation-delay: 0.5s; }

@keyframes slideInMenuItem {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-item {
    position: relative;
    margin: 0 15px;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 25px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    border-left: 4px solid transparent;
    position: relative;
    z-index: 2;
    border-radius: 12px;
}

.menu-item:hover {
    background: rgba(229, 9, 20, 0.15);
    transform: translateX(8px);
}

.menu-item:hover a {
    color: var(--text-light);
    border-left-color: var(--primary-color);
}

.menu-item.active {
    background: rgba(229, 9, 20, 0.2);
    border-left: 4px solid var(--primary-color);
}

.menu-item.active a {
    color: var(--primary-color);
    font-weight: 700;
}

.menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.menu-item:hover .menu-icon {
    transform: scale(1.2);
    color: var(--primary-color);
}

.menu-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
}

.menu-badge {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

/* ===== MENU SECTIONS ===== */
.menu-section {
    margin: 25px 0;
}

.section-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 25px 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

/* ===== MOBILE MENU FOOTER ===== */
.mobile-menu-footer {
    padding: 25px;
    background: var(--secondary-dark);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-btn {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: transparent;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.footer-btn.primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.footer-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.1);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 480px) {
    .mobile-menu-panel {
        width: 100%;
    }
    
    .menu-item a {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .mobile-menu-header {
        padding: 25px 20px 15px;
    }
    
    .mobile-menu-footer {
        padding: 20px;
    }
    
    .footer-actions {
        flex-direction: column;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .mobile-menu-nav ul li {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.burger-menu:focus,
.close-menu:focus,
.menu-item a:focus,
.footer-btn:focus,
.social-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== TOUCH INTERACTIONS ===== */
.menu-item a,
.burger-menu,
.close-menu,
.footer-btn,
.social-link {
    -webkit-tap-highlight-color: rgba(229, 9, 20, 0.2);
    tap-highlight-color: rgba(229, 9, 20, 0.2);
}

/* ===== REST OF YOUR EXISTING STYLES ===== */

/* ===== UNIFIED FOOTER ===== */
footer {
    background: var(--bg-dark);
    border-top: 2px solid var(--primary-color);
    padding: 80px 0 40px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 800;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links h3, .footer-contact h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== HERO SECTIONS ===== */
.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-dark) 50%, var(--secondary-color) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(229, 9, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(229, 9, 20, 0.08) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    box-shadow: 0 8px 25px var(--shadow-light);
    animation: slideUp 0.8s ease-out;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
    letter-spacing: -2px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.8s both;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-light);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ===== TRAILER BANNER ===== */
.trailer-banner {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.trailer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.1), transparent);
    animation: sweep 3s infinite;
}

@keyframes sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.trailer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.trailer-text {
    flex: 1;
}

.trailer-title {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.trailer-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.trailer-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.trailer-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-light);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: var(--secondary-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Inter', monospace;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ===== VIDEO SECTIONS ===== */
.featured-videos {
    padding: 100px 0;
    background: var(--secondary-color);
    position: relative;
}

.featured-videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(229, 9, 20, 0.01) 50px,
            rgba(229, 9, 20, 0.01) 100px
        );
}

.featured-videos .container {
    position: relative;
    z-index: 2;
}

.featured-videos h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-light), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-preview {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
}

.video-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    z-index: 1;
}

.video-preview:hover::before {
    opacity: 1;
}

.video-preview:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 25px 50px var(--shadow-dark), 0 10px 30px var(--shadow-light);
    border-color: var(--primary-color);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-light));
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-preview:hover .video-thumbnail img {
    transform: scale(1.05);
}

.price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px var(--shadow-light);
    z-index: 2;
}

.video-info {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.video-info h3 {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 20px;
    font-weight: 700;
}

.video-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ===== REVIEWS SLIDER ===== */
.reviews-slider {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 0 20px rgba(229, 9, 20, 0.2),
        inset 0 0 20px rgba(229, 9, 20, 0.05);
}

.reviews-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 48px;
    align-items: center;
}

.review-item {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 16px 24px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 12px;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
}

.review-item:hover {
    transform: translateY(-2px);
    background: rgba(229, 9, 20, 0.2);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.review-stars {
    color: var(--primary-color);
    font-size: 18px;
    text-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

.review-text {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
}

.review-author {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trailer-content {
        flex-direction: column;
        text-align: center;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

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

    .btn {
        max-width: none;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
nav ul li a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    :root {
        --border-color: #666666;
        --glass-bg: rgba(0, 0, 0, 0.9);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .hero::before,
    .info-sidebar::before {
        display: none;
    }
    
    .btn {
        background: transparent !important;
        color: #000 !important;
        border: 1px solid #000 !important;
    }
    
    nav,
    .hero-buttons,
    footer {
        display: none;
    }
}
    

.page-header {
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-dark) 50%, var(--secondary-color) 100%);
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(229, 9, 20, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite alternate;
        }

        @keyframes pulse {
            0% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .page-header-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .page-title {
            font-size: clamp(48px, 8vw, 72px);
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--text-light), rgba(255, 255, 255, 0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 0.9;
            letter-spacing: -2px;
        }

        .page-subtitle {
            font-size: clamp(20px, 3vw, 28px);
            font-weight: 700;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
        }

        .user-credits-banner {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 20px 30px;
            margin-top: 30px;
            display: inline-block;
            box-shadow: 0 8px 25px var(--shadow-dark);
        }

        .user-credits-banner .credits-display {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-color);
            text-align: center;
        }

        /* ===== SHOP SECTION ===== */
        .shop-section {
            padding: 80px 0;
            background: var(--secondary-color);
            position: relative;
        }

        .shop-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 50px,
                    rgba(229, 9, 20, 0.01) 50px,
                    rgba(229, 9, 20, 0.01) 100px
                );
        }

        .shop-section .container {
            position: relative;
            z-index: 2;
        }

        /* ===== SHOP FILTERS ===== */
        .shop-filters {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid var(--border-color);
            margin-bottom: 60px;
            box-shadow: 0 15px 40px var(--shadow-dark);
        }

        .filters-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr auto;
            gap: 20px;
            align-items: end;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .filter-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--border-color);
            border-radius: 10px;
            background-color: var(--input-bg);
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
            font-family: inherit;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
            background: var(--secondary-color);
        }

        .form-control::placeholder {
            color: #666;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            min-width: 160px;
            justify-content: center;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--text-light);
            box-shadow: 0 8px 25px var(--shadow-light);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px var(--shadow-light);
        }

        /* ===== PRODUCTS GRID ===== */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid var(--border-color);
            position: relative;
            transform-style: preserve-3d;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 20px;
            z-index: 1;
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-15px) rotateX(5deg);
            box-shadow: 0 30px 60px var(--shadow-dark), 0 15px 40px var(--shadow-light);
            border-color: var(--primary-color);
        }

        .product-image {
            position: relative;
            height: 250px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
            color: var(--text-light);
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px var(--shadow-light);
            z-index: 2;
        }

        .product-info {
            padding: 30px;
            position: relative;
            z-index: 2;
        }

        .product-title {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .product-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding: 15px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

        .price-credits {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-color);
        }

        .price-usd {
            font-size: 16px;
            color: #999;
            font-weight: 600;
        }

        .buy-btn {
            width: 100%;
            padding: 16px 20px;
            background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
            color: var(--text-light);
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .buy-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .buy-btn:hover::before {
            left: 100%;
        }

        .buy-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--shadow-light);
        }

        .buy-btn:disabled {
            background: var(--border-color);
            color: #666;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
            opacity: 0.7;
        }

        /* ===== LOADING & EMPTY STATES ===== */
        .loading-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 4rem;
            font-size: 1.2rem;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 16px;
            border: 1px solid var(--border-color);
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid var(--border-color);
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 1rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .empty-state {
            text-align: center;
            padding: 4rem;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 16px;
            border: 1px solid var(--border-color);
        }

        .empty-state h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 28px;
            font-weight: 800;
        }

        .empty-state p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            font-size: 18px;
        }

        /* ===== SHIPPING MODAL ===== */
        .shipping-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            padding: 20px;
        }

        .shipping-content {
            background: var(--glass-bg);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border-radius: 20px;
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            border: 2px solid var(--border-color);
            position: relative;
            animation: modalSlideIn 0.5s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .shipping-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 40px 20px;
            border-bottom: 2px solid var(--primary-color);
        }

        .shipping-header h3 {
            color: var(--primary-color);
            font-size: 28px;
            font-weight: 800;
        }

        .close-btn {
            background: rgba(0, 0, 0, 0.7);
            color: var(--text-light);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-btn:hover {
            background: var(--primary-color);
            transform: scale(1.1);
        }

        .order-summary {
            background: rgba(0, 0, 0, 0.3);
            padding: 30px;
            margin: 30px 40px;
            border-radius: 12px;
            border-left: 4px solid var(--primary-color);
        }

        .order-summary h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .summary-row:last-child {
            border-bottom: none;
            font-weight: 700;
            font-size: 18px;
            color: var(--primary-color);
            margin-top: 10px;
            padding-top: 20px;
            border-top: 2px solid var(--primary-color);
        }

        .shipping-form {
            padding: 0 40px 40px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-light);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-actions {
            display: flex;
            gap: 20px;
            justify-content: flex-end;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        .btn-secondary {
            background: var(--border-color);
            color: var(--text-light);
            border: 2px solid var(--border-color);
        }

        .btn-secondary:hover {
            background: var(--secondary-light);
            border-color: var(--secondary-light);
            transform: translateY(-2px);
        }

        /* ===== MESSAGES ===== */
        .message {
            padding: 20px;
            margin: 20px 0;
            border-radius: 12px;
            font-weight: 600;
            text-align: center;
            display: none;
            border: 2px solid;
        }

        .message.success {
            background: rgba(40, 167, 69, 0.1);
            color: var(--success);
            border-color: var(--success);
        }

        .message.error {
            background: rgba(229, 9, 20, 0.1);
            color: var(--primary-color);
            border-color: var(--primary-color);
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1024px) {
            .filters-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            header .container {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            nav ul {
                margin-top: 1rem;
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            nav ul li {
                margin: 0 0.75rem;
            }

            .shop-section {
                padding: 60px 0;
            }

            .shop-filters {
                padding: 20px;
            }

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

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

            .shipping-content {
                width: 95%;
                margin: 10px;
            }

            .shipping-header,
            .shipping-form {
                padding: 20px;
            }

            .order-summary {
                margin: 20px;
            }

            .form-actions {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }

            nav ul li {
                margin: 0;
            }

            .product-info {
                padding: 20px;
            }

            .user-credits-banner {
                padding: 15px 20px;
            }
        }