        :root {
            --font-family: "Noto Sans", sans-serif;
            --font-mono: "Space Grotesk", monospace;
            
            /* User Controls colors */
            --fab-bg: #f9f9f9;
            --fab-bg-hover: #ffffff;
            --fab-border: #7f7f7f;
            --fab-border-hover: #4080ff;
            --fab-active-bg: #4080ff;
            --fab-active-bg-hover: #5090ff;
            --fab-active-border: #3070ef;
            --fab-icon: #000000;
            --fab-icon-active: #ffffff;
            --fab-progress: #7594d1;;
            --fab-search-bg: #eeeeee;
            --fab-search-border: #7f7f7f;
            --fab-bubble-bg: #5e5e5e67;
            --fab-bubble-hint: #4eafb6;
            --fab-error: #af6a6a;

        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: fixed;
            -webkit-overflow-scrolling: touch;
        }
        
        body {
            font-family: var(--font-family), sans-serif;
            background: #000;
        }
        #header {
            color: white;
            position: relative;
            z-index: 1;
            margin: 2%;
        }
        
        #container {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        #container canvas {
            display: block;
            width: 100% !important;
            height: 100% !important;
        }
        
        #info {
            position: absolute;
            top: 10px;
            left: 10px;
            color: white;
            background: rgba(0, 0, 0, 0.7);
            padding: 10px;
            border-radius: 5px;
            font-size: 14px;
            z-index: 100;
        }
        
        /* Bloom Controls */
        #bloom-controls {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            padding: 15px;
            border-radius: 8px;
            color: white;
            font-size: 13px;
            z-index: 100;
            min-width: 220px;
        }
        
        #bloom-controls h3 {
            margin: 0 0 10px 0;
            font-size: 14px;
            color: #4080ff;
        }
        
        .bloom-control {
            margin-bottom: 12px;
        }
        
        .bloom-control label {
            display: block;
            margin-bottom: 4px;
            font-size: 12px;
            color: #ccc;
        }
        
        .bloom-control input[type="range"] {
            width: 100%;
            cursor: pointer;
        }
        
        .bloom-control input[type="checkbox"] {
            margin-right: 8px;
            cursor: pointer;
        }
        
        .bloom-value {
            float: right;
            color: #4080ff;
            font-weight: bold;
        }
        
        #loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 18px;
            z-index: 200;
        }
        
        .article-label {
            color: white;
            font-size: 12px;
            background: rgba(0, 0, 0, 0.8);
            padding: 2px 6px;
            border-radius: 3px;
            pointer-events: none;
            user-select: none;
        }
        
       
        /* Startup Modal styles */
        #startup-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            animation: fadeIn 0.5s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* General about-* styles (shared by both contexts) */
        .about-content {
            margin: 0 auto;
            padding: 0;
        }
        
        .about-header {
            background: transparent;
            padding: 28px 30px 10px 30px;
            text-align: left;
            position: relative;
        }

        .about-hero {
            display: flex;
            gap: 18px;
            align-items: center;
        }

        .about-hero-text {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        
        .about-body {
            padding: 0 30px 32px 30px;
            text-align: left;
        }
        
        .avatar-photo {
            width: 92px;
            height: 92px;
            border-radius: 16px;
            object-fit: cover;
            margin: 0;
            display: block;
        }
        
        .about-title {
            font-size: 30px;
            font-weight: 700;
            margin: 0;
        }
        
        .about-subtitle {
            font-size: 16px;
            margin: 0;
        }
        
        .about-description {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 22px;
        }

        .about-description p {
            margin: 0 0 1rem;
        }
        
        /* #startup-modal .about-description {
            max-width: 560px;
        } */

        #startup-modal .about-description p a{
            color: inherit;
            background-color: #ffffff1a;
            padding: 0 0.2rem;
        }
        
        .about-button {
            padding: 12px 28px;
            font-size: 16px;
            border-radius: 14px;
            cursor: pointer;
            transition: all 0.25s ease;
            margin-top: 6px;
            text-decoration: none;
        }
        
        .about-button:hover {
            transform: translateY(-1px);
        }

        /* Startup modal specific styles (dark glassmorphism) */
        #startup-modal .about-content {
            background: rgba(30, 30, 30, 0.35);
            -webkit-backdrop-filter: blur(12px) saturate(120%);
            backdrop-filter: blur(12px) saturate(120%);
            border-radius: 20px;
            width: 90%;
            max-width: 740px;
            max-height: 85vh;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 1px 1px 0 rgba(255, 255, 255, 0.08), inset -1px -1px 0 rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        
        #startup-modal .about-header {
            color: #e9e9e9;
        }
        
        #startup-modal .about-body {
            color: #dcdcdc;
        }
        
        #startup-modal .avatar-photo {
            border: 1px solid rgba(255, 255, 255, 0.22);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
        }
        
        #startup-modal .about-title {
            color: #f2f2f2;
        }
        
        #home-page .about-subtitle,
        #startup-modal .about-subtitle {
            color: #bdbdbd;
        }
        
        /* How It Works Modal styles (reusing startup-modal styles) */
        #how-it-works-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            animation: fadeIn 0.5s ease-in;
        }
        
        #how-it-works-modal .about-content {
            background: rgba(30, 30, 30, 0.35);
            -webkit-backdrop-filter: blur(12px) saturate(120%);
            backdrop-filter: blur(12px) saturate(120%);
            border-radius: 20px;
            width: 90%;
            max-width: 740px;
            max-height: 85vh;
            overflow-y: auto;
            overflow-x: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 1px 1px 0 rgba(255, 255, 255, 0.08), inset -1px -1px 0 rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        
        #how-it-works-modal .about-header {
            color: #e9e9e9;
        }
        
        #how-it-works-modal .about-body {
            color: #dcdcdc;
        }
        
        #how-it-works-modal .about-title {
            color: #f2f2f2;
        }
        
        #how-it-works-modal .about-description h3 {
            color: #f2f2f2;
            font-size: 20px;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 12px;
        }
        
        #how-it-works-modal .about-description h3:first-child {
            margin-top: 0;
        }
        
        #how-it-works-modal .about-description p {
            margin-bottom: 16px;
        }

        #how-it-works-modal .about-description a {
            color: #b9b9b9;
        }
        
        #how-it-works-modal .about-description a:hover {
            color: #f2f2f2;
            transform: translateY(-1px);
        }
        
        .button-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .about-button {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.22);
            color: #f2f2f2;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25), inset 1px 1px 0 rgba(255, 255, 255, 0.06), inset -1px -1px 0 rgba(0, 0, 0, 0.3);
        }
        
        .about-button-primary {
            padding: 16px 40px;
            font-size: 18px;
            font-weight: 600;
            flex: 1;
            min-width: 200px;
        }
        
        #plain-view {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            vertical-align: middle;
        }
        
        .about-button:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

       
        .article-container .about-header {
            color: #1a1a1a;
            padding: 0 0 10px 0;
        }
        
        .article-container .about-hero {
            gap: 24px;
        }
        
        .article-container .about-body {
            color: #2a2a2a;
            padding: 16px 0 20px 0;
        }
        
        .article-container .avatar-photo {
            width: 120px;
            height: 120px;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
        }
        
        .article-container .about-hero-text {
            flex: 1;
            min-width: 0;
        }
        

        
        /* Mobile optimizations */
        @media (max-width: 768px) {
            #info {
                font-size: 11px;
                padding: 8px;
                top: 5px;
                left: 5px;
            }
            
            .modal-content {
                width: 95%;
                max-width: 95%;
                margin: 2% auto;
                max-height: 95vh;
            }
            
            /* Startup modal mobile styles */
            #startup-modal .about-content {
                width: 95%;
                max-width: 95%;
                margin: 0 auto;
                max-height: 95vh;
            }
            
            /* How it works modal mobile styles */
            #how-it-works-modal .about-content {
                width: 95%;
                max-width: 95%;
                margin: 0 auto;
                max-height: 95vh;
            }
            
            /* General mobile styles */
            .about-body {
                padding: 0 20px 24px 20px;
            }
            
            .about-title {
                font-size: 22px;
            }
            
            .about-subtitle {
                font-size: 15px;
            }
            
            .about-description {
                font-size: 15px;
            }

            .about-hero {
                gap: 14px;
            }

            .avatar-photo {
                width: 80px;
                height: 80px;
                border-radius: 14px;
            }
            
            .about-button {
                padding: 11px 22px;
                font-size: 15px;
            }
            
            .about-button-primary {
                padding: 14px 32px;
                font-size: 16px;
            }
            
            #plain-view {
                flex: 1 1 100%;
                text-align: center;
                text-decoration: none;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            #bloom-controls {
                display: none;
            }
        }

        /* Stack hero on very small screens */
        @media (max-width: 520px) {
            .about-hero {
                flex-direction: column;
                align-items: flex-start;
            }
            .avatar-photo {
                width: 76px;
                height: 76px;
            }
        }
        
        /* Touch-friendly tap targets */
        @media (hover: none) and (pointer: coarse) {
            button {
                min-height: 44px;
                min-width: 44px;
            }
            
            .suggestion-item {
                min-height: 44px;
                display: flex;
                align-items: center;
            }
        }
        
        /* User Controls - 3 FABs with Progress Arc */
        .user-controls {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: flex;
            gap: 120px;
            align-items: center;
        }
        
        .fab-button {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.22);
            -webkit-backdrop-filter: blur(10px) saturate(120%);
            backdrop-filter: blur(10px) saturate(120%);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35), inset 1px 1px 0 rgba(255, 255, 255, 0.06), inset -1px -1px 0 rgba(0, 0, 0, 0.28);
            padding: 0;
            position: relative;
            z-index: 10;
        }
        
        .fab-button:hover {
            transform: scale(1.06);
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .fab-button:active {
            transform: scale(0.95);
        }
        
        .fab-icon {
            width: 40%;
            height: 40%;
            pointer-events: none;
        }
        
        .fab-icon-stroke {
            fill: none;
            stroke: rgba(242, 242, 242, 0.92);
            stroke-width: 1.2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.25s ease;
        }
        
        .fab-icon-fill {
            fill: rgba(242, 242, 242, 0.92);
            stroke: none;
            transition: fill 0.25s ease;
        }
        
        /* Play button wrapper with arc */
        .fab-play-wrapper {
            position: relative;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .fab-progress-arc {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            border-radius: 50%;
            pointer-events: none;
            background: conic-gradient(var(--fab-progress) 0deg, transparent 0deg);
            /* transform: rotate(-90deg); */
            z-index: 0;
        }
        
        .fab-play-button {
            position: relative;
            z-index: 8;
        }
        
        .fab-play-button.playing {
            background: rgba(64, 128, 255, 0.18);
            border-color: rgba(64, 128, 255, 0.4);
        }
        
        .fab-play-button.playing:hover {
            background: rgba(64, 128, 255, 0.22);
            border-color: rgba(64, 128, 255, 0.5);
        }
        
        .fab-play-button.playing .fab-icon-stroke {
            stroke: var(--fab-icon-active);
        }
        
        .fab-play-button.playing .fab-icon-fill {
            fill: var(--fab-icon-active);
        }
        
        /* Mobile optimizations for user controls */
        @media (max-width: 768px) {
            .user-controls {
                bottom: 16px;
                left: 0;
                right: 0;
                transform: none;
                width: 100%;
                padding: 0 16px;
                justify-content: space-evenly;
                gap: 12px;
            }
            
            .fab-button {
                width: 64px;
                height: 64px;
            }
/*             me */
            
            .fab-play-wrapper {
                width: 72px;
                height: 72px;
            }
        }
        
        /* Extra small screens */
        @media (max-width: 480px) {
            .user-controls {
                bottom: 12px;
                padding: 0 12px;
                gap: 10px;
                width: 100%;
                justify-content: space-evenly;
            }
            
            .fab-button {
                width: 44px;
                height: 44px;
            }
            
            .fab-icon {
                width: 18px;
                height: 18px;
            }
            
            .fab-play-wrapper {
                width: 52px;
                height: 52px;
            }
        }

        /* Large screens - scale controls slightly up */
        @media (min-width: 1280px) {
            .user-controls {
                max-width: 600px;
                justify-content: space-evenly;
            }
            
            .fab-button {
                width: 64px;
                height: 64px;
            }
            .fab-icon {
                width: 26px;
                height: 26px;
            }
            .fab-play-wrapper {
                width: 80px;
                height: 80px;
            }
        }
        
        /* Search Overlay */
        .search-overlay {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 56px;
            width: 56px;
            background: var(--fab-search-bg);
            border: 2px solid var(--fab-search-border);
            border-radius: 28px;
            display: flex;
            align-items: center;
            padding: 0 16px;
            gap: 12px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .search-overlay.open {
            left: 0;
            right: 0;
            width: 100%;
            opacity: 1;
            pointer-events: auto;
        }
        
        .search-overlay-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .search-overlay-icon .fab-icon {
            width: 20px;
            height: 20px;
        }
        
        .search-overlay-input {
            flex: 1;
            border: none;
            background: transparent;
            color: var(--fab-icon);
            font-size: 16px;
            outline: none;
            opacity: 0;
            transition: opacity 0.2s ease 0.1s;
        }
        
        .search-overlay.open .search-overlay-input {
            opacity: 1;
        }
        
        .search-overlay-input::placeholder {
            color: rgba(0, 0, 0, 0.5);
        }

        /* Ensure search icon is visible on light background when open */
        .search-overlay.open .fab-icon-stroke {
            stroke: #000000;
        }

        .search-overlay.open .fab-icon-fill {
            fill: #000000;
        }
        
        /* Mobile optimizations for search overlay */
        @media (max-width: 768px) {
            .search-overlay {
                height: 50px;
                border-radius: 25px;
            }
            
            .search-overlay.open {
                left: 16px;
                right: 16px;
                width: auto;
            }
            
            .search-overlay-input {
                font-size: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .search-overlay {
                height: 44px;
                border-radius: 22px;
            }
            
            .search-overlay.open {
                left: 12px;
                right: 12px;
                width: auto;
            }
            
            .search-overlay-input {
                font-size: 14px;
            }
        }

/* Search Bubble Styles */
.search-bubble {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--fab-bubble-bg, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin: 0 20px;
    transition: all 0.5s ease-out;
}

.search-bubble.show {
    opacity: 1;
    transform: translateY(0);
}

.search-bubble .bubble-text {
    flex: 1;
    line-height: 1.4;
}

.search-bubble .bubble-icon {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
}

.search-bubble .bubble-icon .fab-icon {
    width: 12px;
    height: 12px;
    margin-top: 2px;
}

.search-bubble .fab-icon-stroke {
    stroke: white;
}

/* ============ Navbar Styles ============ */

/* Glass navbar - reusing fab-button glass effect */
.navbar-glass {
    width: 100%;
    max-width: 100%;
    background: rgba(137, 137, 137, 0.08);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35), inset 1px 1px 0 rgba(255, 255, 255, 0.06), inset -1px -1px 0 rgba(0, 0, 0, 0.28);
    z-index: 1000;
    transition: all 0.25s ease;
    position: sticky;
    top: 0;
    box-sizing: border-box;
}

.navbar-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

/* Navbar overlay - dims navbar elements when search is open */
.navbar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
    border-radius: 0;
}

.navbar-overlay.active {
    opacity: 1;
    pointer-events: none; /* Don't block clicks, just provide visual dimming */
}

/* Close button in navbar overlay */
.navbar-overlay-close {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #f2f2f2;
    transition: all 0.25s ease;
    border-radius: 6px;
    z-index: 101;
    opacity: 0;
    pointer-events: none;
}

.navbar-overlay.active .navbar-overlay-close {
    opacity: 1;
    pointer-events: auto;
}

.navbar-overlay-close:hover {
    color: #ffffff;
    transform: translateY(-50%) translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.navbar-overlay-close-icon {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.navbar-overlay-close-icon .fab-icon-stroke {
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

/* Hide original search button when overlay is active */
.navbar-glass:has(.navbar-overlay.active) .navbar-search-btn {
    opacity: 0;
    pointer-events: none;
}

/* Hide hamburger menu when search overlay is active */
.navbar-glass:has(.navbar-overlay.active) .navbar-hamburger {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Hide mobile menu when search overlay is active */
.navbar-glass:has(.navbar-overlay.active) .navbar-mobile-menu {
    display: none !important;
    opacity: 0 !important;
    max-height: 0 !important;
}

/* Search overlay that positions below navbar */
.search-overlay-navbar {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1002;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35), inset 1px 1px 0 rgba(255, 255, 255, 0.06), inset -1px -1px 0 rgba(0, 0, 0, 0.28);
    margin-top: 0;
    margin-bottom: 0;
    box-sizing: border-box;
}

.search-overlay-navbar:not(.open) {
    padding-top: 0;
    padding-bottom: 0;
}

.search-overlay-navbar.open {
    max-height: 100px;
    opacity: 1;
    pointer-events: auto;
}

.search-overlay-navbar .search-overlay-input {
    flex: 1;
    border: none;
    background: transparent;
    color: #f2f2f2;
    font-size: 16px;
    font-family: var(--font-family);
    outline: none;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
}

.search-overlay-navbar.open .search-overlay-input {
    opacity: 1;
}

.search-overlay-navbar .search-overlay-input::placeholder {
    color: rgba(242, 242, 242, 0.5);
}

.search-overlay-navbar .search-overlay-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #f2f2f2;
    transition: color 0.25s ease;
}

.search-overlay-navbar .search-overlay-icon:hover {
    color: #ffffff;
}

.search-overlay-navbar .search-overlay-icon .fab-icon {
    width: 20px;
    height: 20px;
}

.search-overlay-navbar .search-overlay-icon .fab-icon-stroke {
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-title {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.25s ease, opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-title:hover {
    color: #ffffff;
}

.navbar-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: opacity 0.3s ease;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-links {
    display: flex;
    gap: 1.3rem;
    align-items: center;
}

.navbar-link {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.25s ease;
    text-transform: lowercase;
    border-radius: 6px;
    padding: 0 0.2rem;
}

.navbar-link:hover {
    color: #ffffff;
}

.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    transition: all 0.25s ease;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: #f2f2f2;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-hamburger:hover .hamburger-line {
    background-color: #ffffff;
}

.navbar-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 6px);
}

.navbar-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -6px);
}

.navbar-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgb(26, 26, 26);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 1s ease;
}

.navbar-mobile-menu.open {
    display: flex;
    max-height: 500px;
    opacity: 0.9;
}

.mobile-menu-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    z-index: 10;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.mobile-menu-links .navbar-link {
    font-size: 18px;
    padding: 0.5rem 0;
}

.navbar-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #f2f2f2;
    transition: all 0.25s ease;
    border-radius: 6px;
}

.navbar-search-btn:hover,
.navbar-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.navbar-search-icon {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.navbar-search-icon .fab-icon-stroke {
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #f2f2f2;
    transition: all 0.25s ease;
    border-radius: 6px;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.social-icon {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* Navbar Responsive Styles */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
    
    .navbar-hamburger {
        display: flex;
    }
    
    .mobile-menu-social {
        display: none;
    }
}

@media (max-width: 600px) {
    .navbar-glass {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 0;
    }
    
    .navbar-title {
        font-size: 13px;
    }
    
    .navbar-search-btn {
        width: 28px;
        height: 28px;
    }
    
    .navbar-search-icon {
        width: 18px;
        height: 18px;
    }
    
    .navbar-overlay-close {
        right: 1rem;
        width: 28px;
        height: 28px;
    }
    
    .navbar-overlay-close-icon {
        width: 18px;
        height: 18px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
    
    .navbar-social {
        gap: 0.75rem;
        display: none;
    }
    
    .navbar-hamburger {
        width: 28px;
        height: 28px;
    }
    
    .hamburger-line {
        width: 20px;
    }
    
    .mobile-menu-social {
        display: flex;
    }
    
    .search-overlay-navbar:not(.open) {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .search-overlay-navbar.open {
        max-height: var(--navbar-height, 60px);
        padding: 0.75rem 1rem;
    }
    
    .search-overlay-navbar .search-overlay-input {
        font-size: 15px;
    }
}
