:root {
    --bulldogs-yellow: #FFCB05;
    --bulldogs-yellow-dim: #d4a804;
    --deep-black: #000000;
    --charcoal: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #cccccc;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--deep-black);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Atmospheric background */
.atmosphere {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 20%, rgba(255, 203, 5, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(255, 203, 5, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 203, 5, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: atmosphereShift 20s ease-in-out infinite;
}

@keyframes atmosphereShift {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

/* Navigation */
.nav {
    position: relative;
    z-index: 100;
    padding: 2rem 0;
    animation: navFadeIn 0.8s ease-out;
}

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

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 203, 5, 0.3));
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bulldogs-yellow);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--bulldogs-yellow);
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--bulldogs-yellow);
}

/* Main container */
.container {
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Video wrapper with glow effect */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1800px;
    animation: videoFadeIn 1s ease-out 0.3s backwards;
}

@keyframes videoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-glow {
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background: radial-gradient(ellipse at center, rgba(255, 203, 5, 0.08) 0%, transparent 70%);
    border-radius: 12px;
    filter: blur(40px);
    opacity: 0;
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.video-container {
    position: relative;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 203, 5, 0.15);
    backdrop-filter: blur(10px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-content {
        gap: 2rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .container {
        padding: 1rem;
    }

    .video-glow {
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1.5rem 0;
    }

    .nav-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }
}
