/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #3b82f6;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --background-light: #f8fafc;
    --background-dark: #0f172a;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #f8fafc;
    border-bottom: 1px solid var(--gray-300);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

/* Navbar Sections */
.nav-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Hide mobile search on desktop */
.mobile-search {
    display: none;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: translateY(-1px);
}

.nav-logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-logo-link:hover {
    text-decoration: none;
    color: inherit;
    transform: scale(1.05);
}

.nav-logo-link:visited {
    text-decoration: none;
    color: inherit;
}

.nav-logo-link:active {
    text-decoration: none;
    color: inherit;
}

/* Removed duplicate CSS - using the new comprehensive rules below */

/* Target the span inside the brand text link */
.nav-brand-text span {
    text-decoration: none !important;
    border: none !important;
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: inherit !important;
    font-weight: inherit !important;
    font-size: inherit !important;
}

/* Style the brand text span */
.nav-brand-text {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    background: none;
    border: none;
    outline: none;
}

.nav-brand-text:hover {
    color: var(--secondary-color);
    transform: scale(1.02);
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.nav-logo-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* Navbar Search - New Expandable Design */
.nav-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.nav-search-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.nav-search-toggle:hover::before {
    width: 100%;
    height: 100%;
}

.nav-search-toggle:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.nav-search-expanded {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 300px;
}

.nav-search-expanded.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form-nav {
    position: relative;
}

.search-input-group-nav {
    display: flex;
    align-items: center;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-input-group-nav:focus-within {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.search-input {
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    outline: none;
    background: transparent;
    flex: 1;
    min-width: 200px;
}

.search-input::placeholder {
    color: var(--gray-400);
    font-style: italic;
}

.search-btn-nav {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.search-btn-nav:hover {
    background: var(--secondary-color);
}

.search-close-btn {
    background: var(--gray-300);
    border: none;
    padding: 0.75rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.search-close-btn:hover {
    background: var(--gray-400);
    color: white;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    padding: 0.25em 0;
}

.nav-link:focus {
    outline: none;
    box-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a 0%, #4fc3ff 100%);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1), left 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a8a;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
    left: 10%;
}

.admin-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    font-size: 0.9rem;
}

.admin-link:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4c93 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.admin-link::after {
    display: none;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    /* Remove special styling to match other nav links */
}

.nav-dropdown .fa-chevron-down {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 0.75rem 0;
    margin-top: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-link {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    border-radius: 0;
    margin: 0 0.5rem;
    border-radius: 8px;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid transparent;
    transition: all 0.2s ease;
}

.dropdown-link:hover::before {
    border-top-color: white;
    left: 8px;
}

/* ZULU Clock */
.zulu-clock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
}

.zulu-clock:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
}

.zulu-clock i {
    font-size: 1rem;
    color: #fbbf24;
}

#zulu-time {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    letter-spacing: 1px;
    min-width: 80px;
    text-align: center;
}

.zulu-label {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Announcement Banner */
.announcement-banner {
    position: fixed;
    top: 70px; /* Below navbar */
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    z-index: 1001; /* Higher than navbar (1000) */
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.announcement-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.announcement-icon i {
    font-size: 12px;
    color: white;
}

.announcement-text {
    flex: 1;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.announcement-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.announcement-close i {
    font-size: 14px;
}

/* Adjust hero section when announcement is visible */
.announcement-banner + .hero {
    margin-top: 70px; /* Height of navbar */
}

.announcement-banner:not([style*="display: none"]) + .hero {
    margin-top: 140px; /* Height of navbar + announcement banner */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger animation when active */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/radar-screen.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: opacity(0.1);
    z-index: -1;
}

.clouds {
    display: none !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Twitch button specific styling */
#twitch-button {
    background: #9146FF;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

#twitch-button:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.animated-planes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.plane-container {
    position: absolute;
    pointer-events: none;
}

.plane-container .fa-plane {
    position: absolute;
    color: #39ff14;
    opacity: 0.3;
    font-size: 2rem;
    filter: drop-shadow(0 1px 4px #39ff1444);
}

.plane-label {
    position: absolute;
    top: -20px;
    left: 45px;
    color: #39ff14;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0.9;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.8);
    transition: all 0.3s ease;
    transform: translateZ(0);
    /* Ensure text is always readable */
    text-orientation: mixed;
    writing-mode: horizontal-tb;
}

/* Fix reversed labels for right-to-left planes */
.right-left .plane-label,
.diagonal-up-reverse .plane-label,
.diagonal-down-reverse .plane-label {
    transform: scaleX(-1);
    left: 45px;
}

.plane-label:hover {
    opacity: 1;
    text-shadow: 0 0 12px rgba(57, 255, 20, 1);
}



.plane-label .callsign {
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.plane-label .flight-info {
    font-size: 0.7rem;
    opacity: 0.9;
    color: #4ade80;
}

/* Animation for label updates */
@keyframes labelUpdate {
    0% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.9; transform: scale(1); }
}

.plane-label.updating {
    animation: labelUpdate 0.5s ease-out;
}



/* Randomized vertical positions and directions */
.plane-container.plane-1 { top: 15%; left: -10%; animation: fly-plane-1 18s ease-in-out infinite; }
.plane-container.plane-2 { top: 25%; right: -10%; animation: fly-plane-2 22s ease-in-out infinite; }
.plane-container.plane-3 { top: 40%; left: -12%; animation: fly-plane-3 20s ease-in-out infinite; }
.plane-container.plane-4 { top: 60%; right: -12%; animation: fly-plane-4 25s ease-in-out infinite; }
.plane-container.plane-5 { top: 75%; left: -8%; animation: fly-plane-5 19s ease-in-out infinite; }
.plane-container.plane-6 { top: 35%; right: -8%; animation: fly-plane-6 24s ease-in-out infinite; }
.plane-container.plane-7 { top: 50%; left: -15%; animation: fly-plane-7 21s ease-in-out infinite; }
.plane-container.plane-8 { top: 85%; right: -15%; animation: fly-plane-8 23s ease-in-out infinite; }
.plane-container.plane-9 { top: 20%; left: -20%; animation: fly-plane-9 17s ease-in-out infinite; }
.plane-container.plane-10 { top: 45%; left: -5%; animation: fly-plane-10 26s ease-in-out infinite; }
.plane-container.plane-11 { top: 70%; right: -25%; animation: fly-plane-11 28s ease-in-out infinite; }
.plane-container.plane-12 { top: 30%; right: -18%; animation: fly-plane-12 15s ease-in-out infinite; }
.plane-container.plane-13 { top: 55%; left: -30%; animation: fly-plane-13 31s ease-in-out infinite; }
.plane-container.plane-14 { top: 80%; left: -12%; animation: fly-plane-14 14s ease-in-out infinite; }
.plane-container.plane-15 { top: 10%; left: -35%; animation: fly-plane-15 33s ease-in-out infinite; }

@keyframes fly-plane-1 {
    0% { left: -10%; top: 15%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { left: 110%; top: 15%; opacity: 0.2; }
}


@keyframes fly-plane-2 {
    0% { right: -10%; top: 25%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { right: 110%; top: 25%; opacity: 0.2; }
}
@keyframes fly-plane-3 {
    0% { left: -12%; top: 40%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { left: 108%; top: 5%; opacity: 0.2; }
}
@keyframes fly-plane-4 {
    0% { right: -12%; top: 60%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { right: 108%; top: 95%; opacity: 0.2; }
}
@keyframes fly-plane-5 {
    0% { left: -8%; top: 75%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { left: 112%; top: 25%; opacity: 0.2; }
}
@keyframes fly-plane-6 {
    0% { right: -8%; top: 35%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { right: 112%; top: 5%; opacity: 0.2; }
}
@keyframes fly-plane-7 {
    0% { left: -15%; top: 50%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { left: 115%; top: 50%; opacity: 0.2; }
}
@keyframes fly-plane-8 {
    0% { right: -15%; top: 85%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { right: 115%; top: 85%; opacity: 0.2; }
}
@keyframes fly-plane-9 {
    0% { left: -20%; top: 20%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { left: 120%; top: 5%; opacity: 0.2; }
}
@keyframes fly-plane-10 {
    0% { left: -5%; top: 45%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { left: 105%; top: 45%; opacity: 0.2; }
}
@keyframes fly-plane-11 {
    0% { right: -25%; top: 70%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { right: 125%; top: 95%; opacity: 0.2; }
}
@keyframes fly-plane-12 {
    0% { right: -18%; top: 30%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { right: 118%; top: 30%; opacity: 0.2; }
}
@keyframes fly-plane-13 {
    0% { left: -30%; top: 55%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { left: 130%; top: 15%; opacity: 0.2; }
}
@keyframes fly-plane-14 {
    0% { left: -12%; top: 80%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { left: 112%; top: 80%; opacity: 0.2; }
}
@keyframes fly-plane-15 {
    0% { left: -35%; top: 10%; opacity: 0.2; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { left: 135%; top: 60%; opacity: 0.2; }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Live Status Bar */
.live-status {
    background: var(--gray-900);
    color: var(--white);
    padding: 0.75rem 1rem;
    text-align: center;
    position: sticky;
    top: 70px;
    z-index: 999;
    transition: background-color 0.3s ease;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    max-width: 100%;
    overflow: hidden;
}

.status-indicator span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80vw;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-500);
    animation: pulse 2s infinite;
}

.status-dot.live {
    background: #ef4444;
    animation: pulse 1s infinite;
}

/* Carousel indicator dots */
.status-indicator {
    position: relative;
}

.status-indicator::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.status-indicator.carousel-active::after {
    background: rgba(255, 255, 255, 0.6);
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* About Section */
.about {
    background: var(--background-light);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.about-features i {
    color: #10b981;
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Schedule Section */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.schedule-day {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease;
    height: fit-content;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.schedule-day:hover {
    transform: translateY(-5px);
}

.schedule-day h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Main website schedule items - more specific to avoid conflicts with admin panel */
.schedule .schedule-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    flex: 1;
}

.schedule .schedule-item:last-child {
    margin-bottom: 0;
}

.schedule .time {
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.schedule .title {
    color: var(--text-primary);
    font-weight: 500;
}

.schedule .description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

.schedule-note {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
}

.schedule-note i {
    color: #ef4444;
    margin-right: 0.5rem;
}

/* No Schedule Message */
.no-schedule-message {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px dashed var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

.no-schedule-icon {
    margin-bottom: 1.5rem;
}

.no-schedule-icon i {
    font-size: 4rem;
    color: var(--gray-400);
    opacity: 0.7;
}

.no-schedule-message h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.no-schedule-message p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.no-schedule-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.no-schedule-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.no-schedule-actions .btn-secondary {
    background: linear-gradient(135deg, #9146ff 0%, #7c3aed 100%);
    color: var(--white);
}

.no-schedule-actions .btn-secondary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

/* Schedule Error States */
.schedule-error {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid #e74c3c;
    max-width: 600px;
    margin: 0 auto;
}

.schedule-error .error-icon {
    margin-bottom: 1.5rem;
}

.schedule-error .error-icon i {
    font-size: 4rem;
    color: #e74c3c;
    opacity: 0.8;
}

.schedule-error h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.schedule-error p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.schedule-error .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.schedule-error .btn-secondary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: var(--white);
}

.schedule-error .btn-secondary:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

/* Highlights Section */
.highlights {
    background: var(--background-light);
}

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

.highlight-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.highlight-thumbnail i {
    font-size: 3rem;
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.highlight-thumbnail:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.highlight-content {
    padding: 1.5rem;
}

.highlight-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.highlight-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.highlight-duration {
    display: inline-block;
    background: var(--gray-100);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.highlight-views {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.highlight-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.highlight-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.highlights-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    grid-column: 1 / -1;
}

.loading-spinner {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlights-loading p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.highlight-card.error {
    border: 2px solid #ef4444;
    background: #fef2f2;
}

.highlight-card.error .highlight-content {
    text-align: center;
    color: #ef4444;
}

.highlight-thumbnail {
    position: relative;
    overflow: hidden;
}

.highlight-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.highlight-thumbnail .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.highlight-thumbnail .play-overlay i {
    font-size: 1.5rem;
    color: var(--white);
}

.highlight-card:hover .highlight-thumbnail .play-overlay {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Contact Section */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    border-radius: 1rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link i {
    font-size: 2rem;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link.twitch {
    background: #9146ff;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.discord {
    background: #5865f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #3b82f6 50%, transparent 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.footer-section h4 {
    margin-bottom: 1.25rem;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 1px;
}

.footer-section p {
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
    position: relative;
}

.footer-section ul li::before {
    content: '→';
    position: absolute;
    left: -25px;
    color: #3b82f6;
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li:hover::before {
    opacity: 1;
    left: -20px;
}

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
    margin-left: 5px;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    transition: width 0.3s ease;
}

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

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding-top: 2rem;
    color: var(--gray-400);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom-left p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-left p:last-child {
    color: #3b82f6;
    font-weight: 500;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.legal-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.legal-links a:hover {
    color: var(--primary-color);
}

.legal-links .separator {
    color: var(--gray-500);
    font-weight: 300;
}

#current-year {
    color: #8b5cf6;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .zulu-clock {
        font-size: 0.8rem;
    }
    
    .zulu-clock .zulu-label {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .hamburger {
        display: flex;
    }

    .zulu-clock {
        display: none;
    }
    
    .status-indicator span:last-child {
        font-size: 0.75rem;
        max-width: 90vw;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        transform: none;
    }
    
    /* Mobile Search in Menu */
    .mobile-search {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--gray-200);
        background: var(--gray-50);
    }
    
    .mobile-search .search-input-group-nav {
        background: white;
        border: 2px solid var(--gray-300);
        border-radius: 25px;
        overflow: hidden;
    }
    
    .mobile-search .search-input {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .mobile-search .search-btn-nav {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile Dropdown Styles */
    .nav-dropdown {
        position: static;
    }
    
    .nav-dropdown .nav-link {
        justify-content: center;
        padding: 1rem;
    }
    
    .nav-dropdown .fa-chevron-down {
        margin-left: 0.5rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--gray-50);
        border-radius: 0;
        margin: 0;
        padding: 0;
        min-width: auto;
        width: 100%;
        border-top: 1px solid var(--gray-200);
        border-bottom: 1px solid var(--gray-200);
        backdrop-filter: none;
    }
    
    .dropdown-link {
        padding: 0.75rem 2rem;
        text-align: center;
        border-radius: 0;
        margin: 0;
        border-bottom: 1px solid var(--gray-200);
        font-weight: normal;
    }
    
    .dropdown-link:hover {
        background: var(--gray-100);
        transform: none;
        color: var(--primary-color);
        box-shadow: none;
    }
    
    .dropdown-link::before {
        display: none;
    }
    
    .nav-search-toggle {
        display: none;
    }
    
    .nav-search-expanded {
        display: none;
    }
    
    .zulu-clock {
        display: none;
    }
    
    /* Mobile brand adjustments */
    .nav-brand {
        gap: 0.5rem;
    }
    
    .nav-brand-text {
        font-size: 1.25rem;
    }
    
    .nav-logo-img {
        width: 32px;
        height: 32px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .plane-animation {
        font-size: 5rem;
    }
    
    .plane-label {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .social-links {
        gap: 1rem;
    }

    .social-link {
        min-width: 100px;
        padding: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 2rem;
    }

    /* Schedule mobile improvements */
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .schedule-day {
        padding: 1.5rem;
    }

    .schedule .schedule-item {
        padding: 0.75rem;
    }
    
    /* No schedule message mobile */
    .no-schedule-message {
        padding: 3rem 1.5rem;
        margin: 0 1rem;
    }
    
    .no-schedule-icon i {
        font-size: 3rem;
    }
    
    .no-schedule-message h3 {
        font-size: 1.25rem;
    }
    
    .no-schedule-message p {
        font-size: 1rem;
    }
    
    /* Announcement banner mobile */
    .announcement-banner {
        top: 70px;
    }
    
    .announcement-content {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    
    .announcement-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .announcement-icon {
        width: 20px;
        height: 20px;
    }
    
    .announcement-icon i {
        font-size: 10px;
    }
    
    .announcement-close {
        width: 28px;
        height: 28px;
    }
    
    .announcement-close i {
        font-size: 12px;
    }
    
    /* Adjust hero section margin for mobile when announcement is visible */
    .announcement-banner:not([style*="display: none"]) + .hero {
        margin-top: 120px;
    }
    
    /* Footer mobile improvements */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .footer-section h3::after {
        width: 35px;
        height: 2px;
        bottom: -6px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section h4::after {
        width: 25px;
        height: 2px;
        bottom: -5px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-left {
        order: 2;
    }
    
    .footer-bottom-right {
        order: 1;
    }
    
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .footer-bottom-left p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Small screen brand adjustments */
    .nav-brand {
        gap: 0.4rem;
    }
    
    .nav-brand-text {
        font-size: 1.1rem;
    }
    
    .nav-logo-img {
        width: 28px;
        height: 28px;
    }

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

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

    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .social-link {
        min-width: 80px;
        padding: 1.25rem;
    }
    
    /* Footer small screen improvements */
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .footer-bottom-content {
        gap: 0.75rem;
    }
    
    .legal-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .footer-bottom-left p {
        font-size: 0.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Bokeh overlay for hero section */
.bokeh-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}
.bokeh-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,195,255,0.1) 0%, rgba(30,58,138,0.05) 100%);
    filter: blur(8px);
    animation: bokeh-move 18s linear infinite;
}
.bokeh-circle:nth-child(1) { width: 180px; height: 180px; left: 10%; top: 20%; animation-delay: 0s; }
.bokeh-circle:nth-child(2) { width: 120px; height: 120px; left: 60%; top: 10%; animation-delay: 4s; }
.bokeh-circle:nth-child(3) { width: 90px; height: 90px; left: 80%; top: 50%; animation-delay: 8s; }
.bokeh-circle:nth-child(4) { width: 140px; height: 140px; left: 30%; top: 70%; animation-delay: 12s; }
.bokeh-circle:nth-child(5) { width: 100px; height: 100px; left: 70%; top: 80%; animation-delay: 2s; }
@keyframes bokeh-move {
    0% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) scale(1.1); opacity: 0.5; }
    100% { transform: translateY(0) scale(1); opacity: 0.3; }
}

/* Hero heading glow */
.hero-glow {
    text-shadow:
        0 2px 16px #4fc3ff44,
        0 0px 2px #1e3a8a;
    position: relative;
    z-index: 3;
}

.left-right {
    transform: rotate(0deg);
}
.right-left {
    transform: scaleX(-1) rotate(0deg);
}
.diagonal-up {
    transform: rotate(-15deg);
}
.diagonal-down {
    transform: rotate(15deg);
}
.diagonal-up-reverse {
    transform: scaleX(-1) rotate(-15deg);
}
.diagonal-down-reverse {
    transform: scaleX(-1) rotate(15deg);
}

/* Maximum specificity override for brand text link styling */
.navbar .nav-container .nav-left .nav-brand .nav-brand-text,
.navbar .nav-container .nav-left .nav-brand .nav-brand-text:hover,
.navbar .nav-container .nav-left .nav-brand .nav-brand-text:visited,
.navbar .nav-container .nav-left .nav-brand .nav-brand-text:active,
.navbar .nav-container .nav-left .nav-brand .nav-brand-text:focus {
    all: unset !important;
    text-decoration: none !important;
    color: var(--primary-color) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar .nav-container .nav-left .nav-brand .nav-brand-text:hover {
    color: var(--secondary-color) !important;
    transform: scale(1.02) !important;
}

.navbar .nav-container .nav-left .nav-brand .nav-brand-text span {
    all: unset !important;
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    text-decoration: none !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
} 