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

        html, body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            background: #0f0f0f;
            color: #fff;
            overflow-x: hidden;
            max-width: 100vw;
        }

        /* HERO SLIDER - ZURÜCK! */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 70vh;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(transparent, rgba(15,15,15,0.8), #0f0f0f);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px 40px;
        }

        .hero-title {
            font-size: 2rem;
            font-weight: 700;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
            margin-bottom: 8px;
            line-height: 1.1;
        }
        .hero-title-OLD {
            font-size: 2rem;
            font-weight: 700;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
            margin-bottom: 8px;
        }

        .hero-meta {
            font-size: 0.95rem;
            color: #e8ff00;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
            margin-bottom: 8px;
            font-weight: 500;
        }
        .hero-meta-OLD {
            font-size: 0.9rem;
            color: #e8ff00;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
            margin-bottom: 10px;
            font-weight: 500;
        }

        .hero-subtitle {
            font-size: 0.9rem;
            color: #ccc;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
            margin-bottom: 8px;
        }
        .hero-subtitle-OLD {
            font-size: 1rem;
            color: #ccc;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
            margin-bottom: 8px;
        }

        .hero-buttons {
            display: flex;
            justify-content: flex-start;
            gap: 10px;
            margin-top: 15px;
        }
        .hero-buttons-OLD {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 10px 22px;
            border: none;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-primary {
            background: #e8ff00;
            color: #000;
        }

        .btn-primary:hover {
            background: #fff;
            color: #000;
        }

        .btn-secondary {
            background: rgba(255,255,255,0.15);
            color: #fff;
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.25);
        }

        /* NAVIGATION MIT LOGO */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: auto;
            max-width: 100vw;
            padding: 20px 60px;
            background: linear-gradient(rgba(15,15,15,0.9), transparent);
            z-index: 1000;
            transition: all 0.3s;
            overflow-x: hidden;
            box-sizing: border-box;
        }

        .navbar.scrolled {
            background: #0f0f0f;
            padding: 15px 60px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.5);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            overflow: hidden;
        }

        .logo-img {
            height: 80px;
            width: auto;
            max-width: min(150px, 36vw);
            filter: brightness(0) invert(1);
            flex-shrink: 1;
            object-fit: contain;
        }

        /* NAV ACTIONS */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }

        .search-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .search-toggle svg {
            width: 24px;
            height: 24px;
            color: #fff;
            transition: color 0.2s;
        }

        .search-toggle:hover svg {
            color: #e8ff00;
        }

        .search-toggle:hover {
            transform: scale(1.1);
        }

        /* HAMBURGER BUTTON */
        .hamburger {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

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

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

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

        /* SLIDE-OUT MENU */
        .menu-overlay {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: rgba(15,15,15,0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: right 0.3s ease;
            padding: 80px 30px 30px 30px;
        }

        .menu-overlay.open {
            right: 0;
        }

        .menu-links {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .menu-link {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.2rem;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: color 0.3s;
        }

        .menu-link:hover {
            color: #e8ff00;
        }

        /* FLOATING CHAT BUTTON */
        .chat-fab {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: #e8ff00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(232, 255, 0, 0.4);
            transition: all 0.3s;
            text-decoration: none;
        }
        .chat-fab:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(232, 255, 0, 0.6);
        }
        .chat-fab svg {
            width: 28px;
            height: 28px;
            fill: #000;
        }

        /* TAB SWITCHER */
        .tab-switcher {
            display: flex;
            justify-content: flex-start;
            gap: 10px;
            padding: 20px 60px;
            background: transparent;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .tab-switcher::-webkit-scrollbar { display: none; }
        .main-tab {
            padding: 10px 24px;
            background: rgba(255,255,255,0.08);
            border: none;
            border-radius: 6px;
            color: #aaa;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .main-tab:hover {
            background: rgba(255,255,255,0.15);
            color: #fff;
        }
        .main-tab.active {
            background: #e8ff00;
            color: #000;
            font-weight: 600;
        }

        /* KINO SECTIONS */
        .kino-venue-section {
            margin-bottom: 40px;
        }
        .kino-venue-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #e8ff00;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .kino-venue-title::before {
            content: "KINO";
        }

        /* CONTENT SECTIONS */
        .content {
            padding: 0 60px;
            margin-bottom: 50px;
        }

        .jobs-landing-header {
            margin-bottom: 22px;
        }

        .jobs-landing-subtitle {
            margin: 0 0 14px;
            color: #9a9a9a;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .jobs-landing-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 8px;
        }

        section {
            margin: 0;
            padding: 0;
        }

        .section-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 6px;
            margin-top: 0;
            color: #fff;
        }

        #category-sections {
            margin: 0;
            padding: 0;
        }

        /* OPTIMIERTE SWIPEABLE CAROUSEL */
        .carousel-container {
            position: relative;
            margin-bottom: 8px;
            overflow: hidden;
        }

        .carousel {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 15px;
            padding: 10px 0 20px 0;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .carousel::-webkit-scrollbar {
            display: none;
        }

        .event-card {
            flex: 0 0 300px;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            background: #1a1a1a;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            scroll-snap-align: start;
        }

        .event-card:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .card-image {
            width: 100%;
            height: 60%;
            background-size: cover;
            background-position: center;
            position: relative;
            background-color: #1a1a1a;
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .card-image.loaded {
            opacity: 1;
        }

        .card-category {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0,0,0,0.7);
            color: #e8ff00;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
        }

        .calendar-btn {
            position: absolute;
            bottom: 12px;
            right: 13px;
            background: transparent;
            border: none;
            width: 24px;
            height: 24px;
            cursor: pointer;
            z-index: 3;
            transition: all 0.2s;
            padding: 0;
            opacity: 0.5;
        }
        .calendar-btn:hover {
            opacity: 1;
            transform: scale(1.15);
        }
        .calendar-btn svg {
            width: 100%;
            height: 100%;
            fill: #999;
        }
        .calendar-btn:hover svg {
            fill: #e8ff00;
        }

        .card-content {
            padding: 12px 15px;
            height: 40%;
            position: relative;
        }

        .card-date {
            color: #e8ff00;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .card-title {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 4px;
            line-height: 1.2;
        }

        .card-location {
            color: #999;
            font-size: 0.85rem;
            margin-bottom: 0;
        }

        /* SCROLL BUTTONS */
        .carousel-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.7);
            color: #e8ff00;
            border: 2px solid #e8ff00;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            cursor: pointer;
            display: none; /* Hidden by default, shown on desktop */
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 100;
            font-size: 2rem;
            font-weight: bold;
        }

        /* Only show on desktop (>1024px) */
        @media (min-width: 1025px) {
            .carousel-controls {
                display: flex;
            }
            .carousel-container:hover .carousel-controls {
                opacity: 1;
            }
        }

        .carousel-prev {
            left: 10px;
        }

        .carousel-next {
            right: 10px;
        }

        .carousel-controls:hover {
            background: #e8ff00;
            color: #000;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .section-title {
                font-size: 1rem;
                margin-bottom: 4px;
                margin-top: 0;
            }
            .carousel-container {
                margin-bottom: 4px;
            }
            .tab-switcher {
                padding: 15px 15px;
            }
            .main-tab {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            .navbar {
                padding: 15px 16px;
            }
            .content {
                padding: 5px 15px;
            }

            .jobs-landing-actions {
                gap: 8px;
            }

            .logo-img {
                height: 64px;
            }

            .hero-overlay {
                padding: 30px 20px;
            }

            .hero-title {
            font-size: 2rem;
            font-weight: 700;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
            margin-bottom: 8px;
            line-height: 1.1;
        }
        .hero-title-OLD {
                font-size: 2rem;
            }

            .hero-meta {
            font-size: 0.95rem;
            color: #e8ff00;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
            margin-bottom: 8px;
            font-weight: 500;
        }
        .hero-meta-OLD {
            font-size: 0.9rem;
            color: #e8ff00;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
            margin-bottom: 10px;
            font-weight: 500;
        }

        .hero-subtitle {
            font-size: 0.9rem;
            color: #ccc;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
            margin-bottom: 8px;
        }
        .hero-subtitle-OLD {
                font-size: 1.2rem;
            }

            .event-card {
                flex: 0 0 250px;
                height: 350px;
            }

            .hero-buttons {
            display: flex;
            justify-content: flex-start;
            gap: 10px;
            margin-top: 15px;
        }
        .hero-buttons-OLD {
                max-width: 300px;
            }

            .menu-overlay {
                width: 250px;
            }
        }
        .site-footer {
            background: #111;
            border-top: 1px solid #222;
            margin-top: 80px;
            padding: 50px 20px 20px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            justify-content: space-between;
        }
        
        .footer-brand {
            max-width: 280px;
        }
        
        .footer-logo {
            height: 80px;
            filter: brightness(0) invert(1);
            margin-bottom: 8px;
        }
        
        .footer-tagline {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .footer-links {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }
        
        .footer-column h4 {
            color: #e8ff00;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        
        .footer-column a {
            display: block;
            color: #888;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 6px 0;
            transition: color 0.2s;
        }
        
        .footer-column a:hover {
            color: #fff;
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 20px;
            border-top: 1px solid #222;
            text-align: center;
        }
        
        .footer-bottom p {
            color: #555;
            font-size: 0.85rem;
        }
        
        @media (max-width: 768px) {
            .site-footer {
                padding: 40px 15px 15px;
                margin-top: 60px;
            }
            
            .footer-content {
                gap: 30px;
            }
            
            .footer-brand {
                max-width: 100%;
                text-align: center;
            }
            
            .footer-links {
                width: 100%;
                justify-content: space-around;
                gap: 30px;
            }
            
            .footer-column {
                text-align: center;
            }
            
            .footer-bottom {
                margin-top: 25px;
                padding-top: 15px;
            }
        }

/* ==========================================
   GLOBAL SEARCH STYLES
   ========================================== */

/* NAVBAR SEARCH - Full width row below nav-content */
.nav-search {
    width: 100%;
    max-width: 100%;
    padding: 10px 60px 14px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    z-index: 1002;
    overflow: hidden;
}

@media (max-width: 768px) {
    .nav-search {
        padding: 10px 20px;
    }
}

/* Hide filter badge */
.filter-badge {
    display: none !important;
}

.nav-search-wrapper {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    position: relative;
    width: 100%;
    max-width: 880px;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.nav-search-input-shell {
    position: relative;
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.nav-search-controls {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 8px;
    min-width: 0;
}

.nav-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #888;
    pointer-events: none;
    z-index: 1;
}

.nav-search-mode-pill {
    flex: 0 0 auto;
    min-width: 72px;
    text-align: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(232, 255, 0, 0.12);
    border: 1px solid rgba(232, 255, 0, 0.35);
    color: #e8ff00;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-search-input {
    width: 100%;
    flex: 1;
    padding: 12px 38px 12px 42px;
    background: #2a2a2a;
    border: 2px solid #e8ff00;
    border-radius: 25px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.2s;
    min-width: 150px;
}

.nav-search-clear {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #bfbfbf;
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
}

.nav-search-clear:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-search-input::placeholder {
    color: #a0a0a0;
}

.nav-search-input:focus {
    outline: none;
    background: #333;
    border-color: #e8ff00;
    box-shadow: 0 0 0 3px rgba(232, 255, 0, 0.15);
}

.nav-filter-btn {
    position: relative;
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.14);
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.2s;
    min-width: 44px;
    min-height: 44px;
}

.nav-filter-btn svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.nav-filter-btn:hover svg,
.nav-filter-btn.active svg {
    color: #e8ff00;
}

.nav-filter-btn.active {
    background: rgba(232, 255, 0, 0.15);
    border-color: rgba(232, 255, 0, 0.35);
}

.nav-search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.35rem;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 12px;
    min-width: 44px;
    min-height: 44px;
}

.nav-search-close:hover {
    color: #e8ff00;
    border-color: rgba(232, 255, 0, 0.35);
}

@supports (padding: max(0px)) {
    .nav-search {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

/* Nav actions container (right side) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Search toggle button in navbar */
.search-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle-btn svg {
    width: 22px;
    height: 22px;
    color: #fff;
    transition: color 0.2s;
}

.search-toggle-btn:hover svg {
    color: #e8ff00;
}

.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #888;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 14px 90px 14px 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #888;
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #e8ff00;
}

.search-clear {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: color 0.2s;
    z-index: 10;
}

.search-clear:hover {
    color: #fff;
}

/* SEARCH RESULTS */
.search-results {
    position: fixed;
    top: 140px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    overflow-y: auto;
    padding: 20px 60px 40px;
}

.search-results-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.search-section {
    margin-bottom: 30px;
}

.search-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #e8ff00;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #e8ff00;
    border-radius: 2px;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

/* SEARCH CARDS */
.search-card {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.search-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.search-card-image {
    width: 100px;
    min-height: 100px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    flex-shrink: 0;
}

.search-card-content {
    padding: 12px 15px;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-card-meta {
    font-size: 0.85rem;
    color: #e8ff00;
    margin-bottom: 2px;
}

.search-card-location {
    font-size: 0.85rem;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-card-category {
    display: inline-block;
    background: rgba(232, 255, 0, 0.15);
    color: #e8ff00;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
}

/* NO RESULTS */
.search-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.search-no-results h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.search-no-results p {
    font-size: 0.95rem;
}

/* SEARCH LOADING */
.search-loading {
    text-align: center;
    padding: 40px;
    color: #888;
}

.search-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #e8ff00;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* MOBILE SEARCH */
@media (max-width: 768px) {
    .nav-search {
        position: fixed;
        top: calc(70px + env(safe-area-inset-top));
        left: 0;
        right: 0;
        padding: 8px 12px 10px;
        background: linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(8, 8, 8, 0.92));
        backdrop-filter: blur(8px);
    }

    .search-container {
        padding: 10px 12px;
        top: 56px;
    }
    
    .search-wrapper {
        max-width: 100%;
    }
    
    .search-input {
        padding: 10px 80px 10px 40px;
        font-size: 0.9rem;
        border-radius: 25px;
    }

    .nav-search-wrapper {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 8px;
    }

    .nav-search-mode-pill {
        min-width: 0;
        padding: 8px 10px;
        font-size: 0.72rem;
        letter-spacing: 0.06em;
    }

    .nav-search-input {
        min-width: 0;
        font-size: 0.88rem;
        padding: 11px 40px 11px 40px;
    }

    .nav-search-icon {
        left: 12px;
        width: 17px;
        height: 17px;
    }

    .nav-search-clear {
        right: 8px;
        width: 22px;
        height: 22px;
        font-size: 1.05rem;
    }

    .nav-filter-btn,
    .nav-search-close {
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 0;
        border-radius: 12px;
    }

    .nav-search-close {
        font-size: 1.25rem;
    }
    
    .search-icon {
        left: 12px;
        width: 18px;
        height: 18px;
    }
    
    .search-clear {
        right: 10px;
        font-size: 1.2rem;
        padding: 6px;
    }
    
    .search-results {
        top: 120px;
        padding: 15px 15px 30px;
    }
    
    .search-grid {
        grid-template-columns: 1fr;
    }
    
    .search-card-image {
        width: 80px;
        min-height: 80px;
    }
    
}

@media (max-width: 560px) {
    .navbar {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }

    .nav-search {
        left: 0;
        right: 0;
        width: auto;
        padding: 8px max(10px, env(safe-area-inset-right)) 12px max(10px, env(safe-area-inset-left));
    }

    .nav-search-wrapper {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "mode controls"
            "shell shell";
        align-items: center;
        row-gap: 10px;
        column-gap: 10px;
        max-width: 100%;
    }

    .nav-search-mode-pill {
        grid-area: mode;
        justify-self: start;
        max-width: 100%;
        padding: 8px 14px;
        font-size: 0.68rem;
    }

    .nav-search-input-shell {
        grid-area: shell;
        width: 100%;
    }

    .nav-search-controls {
        grid-area: controls;
        justify-self: end;
    }

    .nav-search-input {
        min-height: 46px;
        border-radius: 24px;
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .nav-search {
        padding: 8px max(8px, env(safe-area-inset-right)) 12px max(8px, env(safe-area-inset-left));
    }

    .nav-search-wrapper {
        row-gap: 8px;
        column-gap: 8px;
    }

    .nav-search-mode-pill {
        padding: 7px 12px;
        font-size: 0.64rem;
        letter-spacing: 0.05em;
    }

    .nav-search-controls {
        gap: 6px;
    }

    .nav-filter-btn,
    .nav-search-close {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        border-radius: 10px;
    }
}

/* ==========================================
   FILTER PANEL STYLES
   ========================================== */

/* Filter toggle button positioned inside search input */

.filter-toggle {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 50%;
    z-index: 15;
}

.filter-toggle svg {
    width: 20px;
    height: 20px;
    color: #888;
    transition: color 0.2s;
}

.filter-toggle:hover svg {
    color: #e8ff00;
}

.filter-toggle.active {
    background: rgba(232, 255, 0, 0.15);
}

.filter-toggle.active svg {
    color: #e8ff00;
}

.filter-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #e8ff00;
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.filter-panel {
    display: none;
    position: fixed;
    top: calc(70px + 62px + env(safe-area-inset-top));
    left: 10px;
    right: 10px;
    max-width: 760px;
    margin: 0 auto;
    background: rgba(7, 7, 7, 0.98);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(232, 255, 0, 0.22);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45);
    z-index: 1000;
    max-height: calc(100dvh - 140px);
    overflow-y: auto;
    animation: filterSlideDown 0.3s ease;
}

@media (max-width: 768px) {
    .filter-panel {
        left: 8px;
        right: 8px;
        top: calc(70px + 56px + env(safe-area-inset-top));
        max-height: calc(100dvh - 138px);
        padding: 14px;
        border-radius: 14px;
    }
}

.filter-panel.visible {
    display: block;
}

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

.filter-section {
    margin-bottom: 20px;
}

.filter-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-panel-title {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.filter-panel-subtitle {
    margin-top: 4px;
    color: #919191;
    font-size: 0.85rem;
}

.filter-panel-mode {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(232, 255, 0, 0.28);
    background: rgba(232, 255, 0, 0.08);
    color: #e8ff00;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.filter-section:last-of-type {
    margin-bottom: 15px;
}

.filter-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #e8ff00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.filter-row {
    display: flex;
    gap: 10px;
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr 170px;
    gap: 10px;
}

.search-mode-field {
    min-width: 0;
}

.search-mode-field .filter-select {
    width: 100%;
}

.filter-select {
    flex: 1;
    padding: 12px 16px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.filter-select:focus {
    outline: none;
    border-color: #e8ff00;
    background-color: #222;
}

.filter-select option {
    background: #1a1a1a;
    color: #fff;
}

.filter-text-input {
    background-image: none;
    cursor: text;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 16px;
}

.filter-location-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.filter-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #1f1f1f;
    color: #fff;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-secondary-btn:hover {
    border-color: rgba(232, 255, 0, 0.35);
    color: #e8ff00;
}

.filter-location-status {
    margin-top: 8px;
    font-size: 0.82rem;
    color: #888;
}

.filter-location-status.active {
    color: #c7d96a;
}

.filter-loading-inline {
    display: inline-block;
    color: #777;
    font-size: 0.84rem;
}

/* Category Chips */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    padding: 8px 14px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 20px;
    color: #ccc;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-chip:hover {
    background: #252525;
    color: #fff;
}

.filter-chip.active {
    background: rgba(232, 255, 0, 0.2);
    border-color: #e8ff00;
    color: #e8ff00;
}

.filter-checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #333;
    border-radius: 10px;
    background: #171717;
    color: #fff;
    cursor: pointer;
}

.filter-checkbox-row input[type="checkbox"] {
    accent-color: #e8ff00;
    width: 16px;
    height: 16px;
}

/* Date Quick Buttons */
.filter-date-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.date-quick-btn {
    padding: 8px 14px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ccc;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.date-quick-btn:hover {
    background: #252525;
    color: #fff;
}

.date-quick-btn.active {
    background: rgba(232, 255, 0, 0.2);
    border-color: #e8ff00;
    color: #e8ff00;
}

/* Date Inputs */
.filter-date-row {
    display: flex;
    gap: 15px;
}

.filter-date-input {
    flex: 1;
}

.filter-date-input label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 6px;
}

.filter-date {
    width: 100%;
    padding: 10px 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-date:focus {
    outline: none;
    border-color: #e8ff00;
}

.filter-date::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-reset {
    background: none;
    border: none;
    color: #888;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.2s;
}

.filter-reset:hover {
    color: #fff;
}

.filter-apply {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* Mobile Filter Adjustments */
@media (max-width: 768px) {
    .filter-toggle {
        right: 40px;
    }
    
    .filter-panel {
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
    }
    
    .filter-section {
        margin-bottom: 16px;
    }
    
    .filter-chips {
        gap: 6px;
    }
    
    .filter-chip {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .filter-date-row {
        flex-direction: column;
        gap: 10px;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-date-quick {
        gap: 6px;
    }
    
    .date-quick-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .filter-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .filter-apply {
        width: 100%;
        justify-content: center;
    }
    
    .filter-reset {
        width: 100%;
        text-align: center;
    }

    .nav-search-wrapper {
        gap: 8px;
    }

    .nav-search-mode-pill {
        min-width: 0;
        padding: 8px 10px;
        font-size: 0.68rem;
    }
}


/* ==========================================
   NEWS SECTION STYLES
   ========================================== */

/* News uses event-card carousel styles - only extras here */

.card-image.no-image {
    background: #1a1a1a;
}

.news-card-link .card-content {
    display: flex;
    flex-direction: column;
}

.news-card-source {
    margin-top: auto;
    padding-top: 8px;
    font-size: 0.7rem;
    color: #888;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Loading Spinner (shared) */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: #e8ff00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================
   MEDIEN / VIDEO SECTION STYLES
   ========================================== */

/* Video cards use event-card styles - extras here */
.video-card {
    position: relative;
}

.video-card .card-image {
    position: relative;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.video-card:hover .video-play-overlay {
    background: rgba(0,0,0,0.5);
}

.video-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid #e8ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .video-play-btn {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.4);
    border-color: #e8ff00;
}

.video-play-btn svg {
    width: 24px;
    height: 24px;
    fill: #e8ff00;
    margin-left: 4px;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.video-card .card-category {
    background: rgba(232, 255, 0, 0.9);
    color: #000;
}

/* Video Lightbox */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-lightbox.active {
    display: flex;
}

.video-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    cursor: pointer;
}

.video-lightbox-content {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    aspect-ratio: 16/9;
    z-index: 1;
}

.video-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.video-lightbox-close:hover {
    color: #e8ff00;
}

.video-lightbox-player {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-lightbox-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .video-lightbox-content {
        width: 95vw;
        max-width: none;
        aspect-ratio: 16/9;
    }
    
    .video-lightbox-close {
        position: absolute;
        top: -45px;
        right: 0;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    
    .video-lightbox-player {
        border-radius: 0;
    }
    
    .video-lightbox-player iframe {
        width: 100%;
        height: 100%;
    }
}

/* ==========================================
   NOTIFICATION CENTER
   ========================================== */

/* Bell Button */
.notification-bell {
    position: relative;
    background: none;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s;
}

.notification-bell:hover {
    color: #e8ff00;
}

.notification-bell svg {
    width: 22px;
    height: 22px;
}

.notification-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #e8ff00;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Notification Center Panel */
.notification-center {
    position: fixed;
    top: 60px;
    right: 10px;
    width: calc(100% - 20px);
    max-width: 360px;
    max-height: calc(100vh - 80px);
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.notification-center.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

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

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.notification-title {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}

.notification-close {
    background: none;
    border: none;
    color: #888;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.notification-close:hover {
    color: #fff;
}

.notification-list {
    overflow-y: auto;
    flex: 1;
    padding: 8px 0;
}

.notification-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.notification-empty p {
    margin: 0;
}

.notification-hint {
    font-size: 0.85rem;
    margin-top: 8px !important;
    color: #888;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: background 0.2s;
}

.notification-item:hover {
    background: rgba(255,255,255,0.05);
}

.notification-item.unread {
    background: rgba(232,255,0,0.05);
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #e8ff00;
    border-radius: 50%;
}

.notification-item {
    position: relative;
    padding-left: 24px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-text {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 2.6em; /* 2 Zeilen */
    word-wrap: break-word;
}

/* Expanded State */
.notification-item.expanded .notification-text {
    display: block;
    -webkit-line-clamp: unset;
    max-height: 500px; /* Genug für langen Text */
}

/* Expand Indicator */
.notification-item .expand-indicator {
    font-size: 0.7rem;
    color: #e8ff00;
    margin-top: 4px;
    display: none;
    font-weight: 500;
}

.notification-item.has-more .expand-indicator {
    display: block;
}

.notification-item.expanded .expand-indicator::before {
    content: '▲ Weniger';
}

.notification-item:not(.expanded) .expand-indicator::before {
    content: '▼ Mehr lesen';
}

.notification-time {
    font-size: 0.75rem;
    color: #666;
}

/* ==========================================
   SEARCH RESULTS TABS
   ========================================== */

.search-tabs {
    display: flex;
    gap: 8px;
    padding: 15px 20px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.search-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(50, 50, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #aaa;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.search-tab:hover {
    background: rgba(70, 70, 70, 0.8);
    color: #fff;
}

.search-tab.active {
    background: #e8ff00;
    color: #000;
    border-color: #e8ff00;
}

.search-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 11px;
    font-size: 0.75rem;
    font-weight: 600;
}

.search-tab.active .search-tab-count {
    background: rgba(0, 0, 0, 0.3);
}

.search-tab-content {
    animation: fadeIn 0.3s ease;
}

.search-results-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding: 14px 16px;
    background: rgba(18, 18, 18, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.search-results-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.search-results-subtitle {
    margin-top: 4px;
    color: #8f8f8f;
    font-size: 0.85rem;
    line-height: 1.35;
}

.search-results-meta {
    flex: 0 0 auto;
    color: #e8ff00;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(232, 255, 0, 0.25);
    background: rgba(232, 255, 0, 0.08);
}

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

/* Search Results Grid */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

@media (max-width: 600px) {
    .search-results-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .search-tabs {
        padding: 10px 15px;
        gap: 6px;
    }
    
    .search-tab {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .search-results-head {
        flex-direction: column;
    }
}

/* Empty State */
.search-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.search-empty p {
    margin-bottom: 10px;
}

.search-empty-hint {
    font-size: 0.85rem;
    color: #555;
}

/* Card description for search results */
.card-desc {
    font-size: 0.8rem;
    color: #888;
    margin-top: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
