/* GLASS COMMAND HEADER STYLES */
:root {
    --header-height: 80px;
    --gc-glass: rgba(5, 7, 10, 0.7);
    --gc-border: rgba(0, 242, 255, 0.1);
    --gc-highlight: rgba(255, 255, 255, 0.03);
    --gc-accent: #00f2ff;
    --gc-text: #94a3b8;
    --gc-text-hover: #f8fafc;
}

/* Base Reset for Header Context */
body {
    padding-top: var(--header-height);
    /* Prevent content overlap */
}

.glass-command-header {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
}

.glass-command-container {
    background: var(--gc-glass);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gc-border);
    border-top: 1px solid var(--gc-highlight);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

/* Nav Items */
.nav-item {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gc-text);
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-item:hover,
.nav-item.active {
    color: var(--gc-text-hover);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--gc-accent);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px var(--gc-accent);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

/* Dropdown */
.glass-panel {
    background: rgba(3, 5, 8, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gc-border);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--gc-text);
    border-radius: 4px;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.dropdown-link:hover {
    background: rgba(0, 242, 255, 0.05);
    color: #fff;
}

.dropdown-link .sub {
    font-family: 'Inter', sans-serif;
    color: #475569;
    font-size: 0.6rem;
    margin-left: auto;
}

/* CTA Button */
.cta-btn {
    position: relative;
    padding: 0.6rem 1.5rem;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid var(--gc-border);
    color: var(--gc-accent);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--gc-accent);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.cta-btn .scan-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: scan 3s infinite;
}

@keyframes scan {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Mobile Menu */
.mobile-link {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gc-text-hover);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-cta {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    background: var(--gc-accent);
    padding: 1rem 2rem;
    text-decoration: none;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}