        body {
            margin: 0px !important;
            padding: 0;
            font-family: 'Inter', Arial, sans-serif;
        }

        /* Main Layout Container */
        .main-layout {
            display: flex;
            height: 100vh;
            width: 100%;
        }

        /* Map Section (full width by default) */
        .map-section {
            width: 100%;
            height: 100vh;
            position: relative;
            transition: width 0.3s ease;
        }

        /* Right Sidebar (overlay from right) */
        .right-sidebar {
            width: 25%;
            height: 100vh;
            background-color: rgba(27, 23, 23, 0.95);
            backdrop-filter: blur(10px);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            padding: 0;
            position: fixed;
            top: 0;
            right: -25%; /* Start off-screen */
            z-index: 1000;
            transition: right 0.3s ease;
        }

        /* Sidebar appears when opened */
        .right-sidebar:not(.collapsed) {
            right: 0;
        }

        /* Collapsed state - hidden off-screen */
        .right-sidebar.collapsed {
            right: -25%;
        }

        #map {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
        }

        /* Hide content when collapsed except the toggle button */
        .right-sidebar.collapsed > *:not(.sidebar-toggle-btn) {
            opacity: 0;
            pointer-events: none;
        }

        /* Sidebar Toggle Button */
        .sidebar-toggle-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 60px;
            background: #7c3aed;
            border: none;
            border-radius: 8px;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .sidebar-toggle-btn:hover {
            background: #6d28d9;
            transform: translateY(-50%) scale(1.05);
        }



        /* Map adjustment when sidebar is collapsed */
        .main-layout.sidebar-collapsed .map-section {
            width: calc(100% - 50px) !important;
        }

        /* Layout for logged-in users */
        .main-layout.logged-in .map-section {
            width: 100%;
        }

        .main-layout.logged-in.sidebar-collapsed .map-section {
            width: calc(100% - 50px) !important;
        }

        /* Super specific override for logged-in collapsed state */
        html body .main-layout.logged-in.sidebar-collapsed > .map-section {
            width: calc(100% - 50px) !important;
        }

        .main-layout.logged-in .right-sidebar {
            display: none;
        }
        
        /* UI Elements */
        .ui-element {
            /* Base styles */
            background-color: #1b1717a3;
            position: absolute;
            z-index: 10;
            color: white;
            border-radius: 8px;
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            
            /* Icon-only state by default */
            width: 48px;
            height: 48px;
    padding: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }


        /* UI Elements */
        .ui-element-transparent {
            /* Base styles */
            position: absolute;
            z-index: 10;
            color: white;
            border-radius: 8px;
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            
            /* Icon-only state by default */
            width: 48px;
            height: 48px;
            padding: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        /* Expanded state */
        .ui-element.expanded {
            width: 300px;
            height: auto;
            padding: 0;
            z-index: 99999;
            overflow: visible;
        }
        

        .bottom-right {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        /* Top Left - Logo */
        .top-left {
            top: 52px;
            left: 20px;
            display: flex;
            align-items: center;
            width: auto !important;
            height: auto !important;
            padding: 12px 16px !important;
        }

        .logo {
            font-weight: bold;
            font-size: 24px;
            margin-right: 10px;
        }
        
        .tagline {
            font-size: 14px;
            opacity: 0.8;
}

                /* Top Right - Buttons */
        .top-right {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1001;
            gap: 10px;
            width: auto !important;
            height: auto !important;
            padding: 12px 16px !important;
            overflow: visible; /* Override to ensure dropdown menu is not clipped */
        }

        .action-button {
            background-color: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 10px 16px;
            border-radius: 6px;
    cursor: pointer;
            font-weight: 500;
            transition: background-color 0.2s;
        }
        
        .action-button:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }
        
        .action-button.primary {
            background-color: #8846e5;
        }
        
        .action-button.primary:hover {
            background-color: #6917dd;
        }
        
        /* Bottom Left - Filters */
        .bottom-left {
            bottom: 20px;
            left: 20px;
            width: 48px !important;
            height: 48px !important;
    display: flex;
    align-items: center;
    justify-content: center;
            cursor: pointer;
            background-color: #1b1717a3;
            transition: background-color 0.3s ease;
        }
        
        .bottom-left:hover {
            background-color: #2b2727a3;
        }
        
        .filter-title {
            font-size: 14px;
            margin-bottom: 8px;
            opacity: 0.8;
        }
        
        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .filter-option {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }
        
        .social-button {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: #1DA1F2;
            color: white;
            border: none;
            padding: 10px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
        }
        
        .social-button:hover {
            background-color: #0c85d0;
        }
        
        /* Founder Pin Popup */
        .mapboxgl-popup-content {
            padding: 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            background-color: #1d1d1dd4;
}

        .founder-card {
            background: white;
            width: 240px;
        }
        
        .founder-header {
            background: #f3f4f6;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .founder-logo {
            width: 40px;
    height: 40px;
            border-radius: 6px;
            background: #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #4b5563;
        }
        
        .founder-info {
            flex: 1;
            min-width: 0;
}

        .founder-info h3 {
            margin: 0 0 4px 0;
            font-size: 16px;
        }
        
        .founder-location {
            font-size: 12px;
            color: #6b7280;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .founder-body {
            padding: 15px;
            text-align: center;
}

        .founder-tagline {
            margin: 0 0 12px 0;
            font-size: 14px;
            color: #4b5563;
        }
        
        .founder-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .founder-link-wrapper {
            display: flex;
            justify-content: center;
        }
        
        .founder-link {
            font-size: 12px;
            color: #8846e5;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .founder-link:hover {
            text-decoration: underline;
}

        /* Special Paid Visuals */
        .premium-pin::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            z-index: 10;
        }

        .premium-pin {
            z-index: 10 !important;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1.2);
                opacity: 0.6;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.3;
            }
            100% {
                transform: scale(1.2);
                opacity: 0.8;
            }
        }

        .founder-zero {
            z-index: 1000;
        }
        
        .founder-zero::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
    width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 99999;
            justify-content: center;
            align-items: center;
        }

        .modal.active {
    display: flex;
    align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background:#0f0f0fde;
            padding: 30px;
            border-radius: 12px;
            max-width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }
        
        .modal-header {
    margin-bottom: 20px;
    text-align: center;
}

        .modal-header h2 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
    color: white;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 48px;
            background: none;
    border: none;
            cursor: pointer;
            color: white;
        }

        .modal-close:hover {
            color: #000;
        }

        .join-form label {
            color: #d197ff;
            margin-bottom: 8px;
            display: block;
        }
        
        .form-group input {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            font-size: 14px;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
        }
        
        .form-group input:focus {
            border-color: #8846e5;
            outline: none;
        }
        
        .action-button.primary {
            background: #8846e5;
    color: white;
    border: none;
            padding: 12px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            margin-top: 8px;
        }
        
        .pricing-modal {
            width: 90%;
        }

        .pricing-container {
    display: flex;
            gap: 20px;
            justify-content: center;
}

        .pricing-plan {
    flex: 1;
            background: #f8f9fa;
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            position: relative;
        }
        
        .pricing-plan.featured {
            background: #434343;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transform: scale(1.05);
        }
        
        .plan-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #6B46FF;
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }
        
        .plan-header {
    margin-bottom: 20px;
    margin-top: 20px;
}

        .plan-header h3 {
            margin: 0 0 10px 0;
            font-size: 20px;
            font-weight: 600;
    color: white;
        }
        
        .plan-price {
            font-size: 32px;
    font-weight: 700;
            color: #6B46FF;
        }
        
        .plan-features {
            margin-bottom: 24px;
}

        .plan-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
}

        .plan-features li {
            padding: 8px 0;
            color: white;
        }
        
        .plan-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #6B46FF;
            color: #fff;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            transition: background-color 0.2s;
}

        .plan-button:hover {
            background: #5535CC;
        }
        
        .plan-button.featured-button {
            background: #6B46FF;
        }
        
        @media (max-width: 768px) {
            .brand-title-tagline {
                display: none;
            }

            .modal-content {
                margin: 10px;
                padding: 16px;
            }
            
            .pricing-container {
                gap: 16px;
                padding: 10px 0;
            }
            
            .pricing-plan {
                padding: 16px;
            }
            
            .plan-features ul {
                padding-left: 20px;
            }
            
            .modal-header h2 {
                font-size: 20px;
                color: white;
            }

            
            .plan-header h3 {
                font-size: 18px;
            }
            
            .plan-price {
                font-size: 24px;
}

            .plan-features {
                font-size: 14px;
            }
        }
        
        @media (max-width: 380px) {
            .modal-content {
                margin: 5px;
                padding: 12px;
            }
            
            .pricing-plan {
                padding: 12px;
}

            .plan-badge {
                font-size: 12px;
                padding: 4px 8px;
            }
        }
        
                /* Founder Zero Panel */
        .founder-zero-panel {
            top: 110px;
            color: yellow;
        }

/* Mobile Responsive for Split Layout */
@media (max-width: 768px) {
    .main-layout {
        flex-direction: column;
        height: 100vh;
    }

    .map-section {
        width: 100%;
        height: 100vh;
        order: 1;
    }

    .right-sidebar {
        width: 100%;
        height: 100vh;
        order: 2;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 1000;
        transition: right 0.3s ease;
    }
    
    /* Mobile sidebar states */
    .right-sidebar.collapsed {
        right: -100%;
    }
    
    .right-sidebar:not(.collapsed) {
        right: 0;
        transform: none;
    }

    .hero-section {
        padding: 16px;
    }

    .hero-headline {
        font-size: 18px;
    }

    .hero-subheadline {
        font-size: 13px;
    }

    .hero-cta {
        padding: 10px 14px;
        font-size: 14px;
    }

    .vertical-ticker {
        height: calc(40vh - 200px);
    }

    .vertical-ticker .ticker-label {
        padding: 8px 16px;
        font-size: 10px;
    }

    .vertical-ticker .ticker-item {
        padding: 8px 16px;
        font-size: 11px;
    }

    .top-right {
        top: 10px;
        right: 10px;
    }

    /* Adjust check-in button for mobile */
    .btn-check-in {
        right: 1rem;
        left: auto;
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .top-left-brand-hero .brand-title h1 {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {

    .map-section {
        height: 65vh;
    }

    .top-left-brand-hero .brand-title h1 {
        font-size: 20px;
    }

    .top-left-brand-hero .hero-headline {
        font-size: 16px;
    }

    .top-left-brand-hero .hero-subheadline {
        font-size: 12px;
    }

    .hero-text {
        padding: 12px;
    }

    .hero-section {
        padding: 12px;
    }

    .hero-headline {
        font-size: 16px;
    }

    .hero-subheadline {
        font-size: 12px;
    }

    .vertical-ticker {
        height: calc(35vh - 180px);
    }
}

        /* Panel Headers */
        .panel-header {
            cursor: pointer;
            white-space: nowrap;
    display: flex;
    align-items: center;
            gap: 12px;
            padding: 12px;
            height: 48px;
            box-sizing: border-box;
        }
        
        /* Panel Icons */
        .panel-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        
        /* Hide panel content by default */
        .panel-title,
        .founder-zero-content,
        .country-founders-content,
        .updates-content {
            display: none;
        }
        
        /* Show content when expanded */
        .ui-element.expanded .panel-title,
        .ui-element.expanded .founder-zero-content,
        .ui-element.expanded .country-founders-content,
        .ui-element.expanded .updates-content {
            display: block;
        }
        
        .panel-title h3 {
            margin: 0;
            font-size: 16px;
        }
        
        .panel-subtitle {
            margin: 4px 0 0 0;
            font-size: 12px;
            opacity: 0.7;
        }
        
        .founder-zero-content {
            padding: 0 12px 12px 12px;
        }
        
        .founder-zero-list {
            overflow-y: auto;
            max-height: 300px;
            padding: 8px 0;
}

        .founder-zero-item {
            display: flex;
            align-items: center;
            padding: 8px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            cursor: pointer;
        }
        
        .founder-zero-item:last-child {
            border-bottom: none;
        }
        
        .founder-zero-avatar {
            width: 32px;
            height: 32px;
    border-radius: 50%;
            margin-right: 12px;
            background-color: #8846e5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 12px;
        }


        .marker-founder-zero-avatar {
            width: 52px !important;
            height: 52px !important;
            border-radius: 50%;
            margin-right: 12px;
            background-color: #ffffff00;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 12px;
        }
        
        .founder-zero-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
    object-fit: cover;
}

        .founder-zero-info {
            flex: 1;
        }
        
        .founder-zero-name {
            font-size: 14px;
            font-weight: 500;
            margin: 0;
        }
        
        .founder-zero-city {
            font-size: 12px;
            opacity: 0.7;
            margin: 0;
}

        .founder-zero-cta {
            padding: 12px 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
        }
        
        .founder-zero-cta p {
            margin: 0 0 8px 0;
            font-size: 14px;
            opacity: 0.8;
        }
        
        .form-note {
            padding: 10px 20px;
            background-color: #f8f9fa;
            border-bottom: 1px solid #e5e7eb;
            font-size: 14px;
            color: #374151;
        }
        
        .form-note p {
            margin: 0;
            line-height: 1.5;
        }
        
        /* Panel toggle button */
        .panel-toggle {
            display: none;
        }
        
        /* Country Founders Panel */
        .country-founders-panel {
            top: 192px;
            left: 20px;
        }
        
        .country-founders-content {
            display: none;
            padding: 12px;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .ui-element.expanded .country-founders-content {
    display: block;
        }
        
        .country-list {
            margin-top: 10px;
        }
        
        .country-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

        .country-item:last-child {
            border-bottom: none;
        }
        
        .country-header {
    display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .country-header:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        
        .country-name {
            font-size: 16px;
            font-weight: 500;
            color: #fff;
}

        .country-count {
            background: rgba(255, 255, 255, 0.15);
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .founder-list {
            max-height: 0;
            overflow: auto;
            transition: max-height 0.3s ease-out;
            background: rgba(255, 255, 255, 0.02);
        }
        
        .country-item.expanded .founder-list {
            max-height: 1000px; /* Large enough to fit content */
        }
        
        .founder-item {
    display: flex;
    align-items: center;
            gap: 12px;
            padding: 12px;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .founder-item:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        
        .founder-item-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
}

        .founder-item-avatar img {
    width: 100%;
    height: 100%;
            object-fit: cover;
        }
        
        .founder-item-info {
            flex: 1;
            min-width: 0;
        }
        
        .founder-item-name-wrapper {
            display: flex;
    align-items: center;
            gap: 8px;
            margin-bottom: 2px;
        }
        
        .founder-item-name {
            font-size: 14px;
            font-weight: 500;
            color: #fff;
        }
        
        .founder-item-city {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
}

        .founder-item-premium-tag {
            background: #FFD700;
            color: #000;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
    display: flex;
            align-items: center;
            gap: 4px;
        }

.founder-item-founder-zero-tag {
    background: #8846e5;
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
display: flex;
    align-items: center;
    gap: 4px;
}

        .founder-item-founder-zero-tag i {
            font-size: 10px;
        }
        
        .panel-total-count {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            padding: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .scroll-indicator {
            text-align: center;
            padding: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Updates Panel */
        .updates-panel {
            top: 300px;
            left: 20px;
        }
        
        .updates-content {
            padding: 0 12px 12px 12px;
        }
        
        .updates-panel.collapsed .panel-toggle i {
            transform: rotate(180deg);
        }
        
        .updates-list {
    overflow-y: auto;
            max-height: 350px;
            padding: 8px 0;
}

        .update-item {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .update-item:last-child {
            border-bottom: none;
        }
        
        .update-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #8846e5;
            display: flex;
            align-items: center;
            justify-content: center;
    font-weight: bold;
            font-size: 14px;
            flex-shrink: 0;
}

        .update-avatar img {
    width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .update-content {
            flex: 1;
        }
        
        .update-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 4px;
}

        .update-name {
            font-weight: 600;
            font-size: 14px;
}

        .update-time {
            font-size: 12px;
            opacity: 0.7;
        }
        
        .update-message {
            font-size: 13px;
            line-height: 1.4;
            margin: 0;
        }
        
        .update-link {
            color: #a78bfa;
            text-decoration: none;
}

        .update-link:hover {
            text-decoration: underline;
}

        .updates-footer {
            padding: 10px 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 12px;
            opacity: 0.7;
}

        .founder-item-city {
            font-size: 11px;
            opacity: 0.7;
            margin-left: 6px;
}

        /* Pricing Plans */
        .pricing-container {
    display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 20px 0;
}

        .pricing-plan {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 20px;
            position: relative;
}

        .plan-button {
    display: block;
            padding: 12px;
            text-align: center;
            border-radius: 6px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            transition: background-color 0.2s;
            font-size: 16px;
            cursor: pointer;
}

        .plan-button:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .plan-button.featured-button {
            background-color: #8846e5;
        }
        
        .plan-button.featured-button:hover {
            background-color: #6917dd;
        }
        
        /* Add media query for larger screens */
        @media (min-width: 768px) {
            .pricing-container {
                flex-direction: row;
                gap: 24px;
                justify-content: center;
            }

            .pricing-plan {
                flex: 1;
                max-width: 300px;
            }

            .modal-content {
                margin: 40px auto;
            }
        }
        
        /* Plan features */
        .plan-features ul {
            list-style-type: none;
            padding-left: 0;
            margin: 20px 0;
}

        .plan-features li {
            margin: 10px 0;
    display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .plan-features li::before {
            content: "✓";
            color: #8846e5;
}

.plan-features li.li-not-before::before {
    content: "❌";
}

        .founder-share {
            margin-top: 12px;
    text-align: center;
        }
        
        .share-button {
            margin-top: 10px;
            background-color: #8846e5;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .share-button:hover {
            background-color: #6917dd;
        }
        
        .founder-zero-header {
            background: #8846e5 !important;
            color: white;
}

        .founder-zero-header .founder-location {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .founder-zero-crown {
            color: #FFD700;
            margin-left: 6px;
            font-size: 14px;
        }
        
        .founder-zero-header .founder-logo {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }
        
        .info-icon {
            margin-left: 10px;
            cursor: pointer;
            font-size: 18px;
            opacity: 0.8;
            transition: opacity 0.2s;
        }
        
        .info-icon:hover {
            opacity: 1;
        }
        
        .info-popup {
            position: absolute;
            bottom: 60px;
            right: 20px;
            background-color: #1b1717a3;
            color: white;
            padding: 15px;
    border-radius: 8px;
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 100;
            width: 280px;
            display: none;
        }
        
        .info-popup.active {
    display: block;
            animation: fadeIn 0.3s;
}

        .info-popup-header {
    display: flex;
    align-items: center;
            margin-bottom: 10px;
}

        .info-popup-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
            margin-right: 10px;
}

        .info-popup-title {
    font-weight: bold;
            font-size: 16px;
        }
        
        .info-popup-content {
            font-size: 14px;
            line-height: 1.5;
}

        .info-popup-links {
            margin-top: 10px;
    display: flex;
            gap: 10px;
}

        .info-popup-link {
            color: #a78bfa;
            text-decoration: none;
            font-size: 14px;
    display: flex;
    align-items: center;
            gap: 5px;
        }
        
        .info-popup-link:hover {
            text-decoration: underline;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .marker-popup {
            padding: 12px;
            min-width: 200px;
        }

        .popup-header {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .popup-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .popup-title {
            flex: 1;
}

        .popup-title h3 {
            margin: 0;
            font-size: 16px;
            line-height: 1.4;
        }

        /* Adjust spacing when no image is present */
        .popup-title:first-child {
            margin-left: 0;
        }

        .founder-list-initials {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: #8846e5;
    color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
    font-weight: bold;
        }

        .founder-list-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Add these styles to your existing CSS */
        .mapboxgl-popup {
            z-index: 1001 !important;
            max-width: 350px !important;
        }

        .mapboxgl-popup-content {
            z-index: 20 !important;
            width: 350px;
}

        /* Update the marker styles */
        .marker {
            width: 10px;
            height: 10px;
            background-color: #8846e519;
            border: 1px solid #8846e5;
            border-radius: 50%;
            
            cursor: pointer;
            box-shadow: 0 0 10px rgba(136, 70, 229, 0.4);
        }

        .marker.premium {
            background-color: #ffffff00;
            z-index: 100;
        }

        .marker.founder-zero {
            background-color: #FFD700;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
            animation: pulse-gold 2s infinite;
}

        .marker.active {
            transform: scale(1.2);
            z-index: 2;
        }

        .scroll-indicator {
            text-align: center;
            padding: 8px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 8px;
}

        .country-list {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 8px;
        }

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

        .country-count {
            background: rgba(255, 255, 255, 0.1);
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 12px;
        }

        .panel-total-count {
            text-align: center;
            padding: 8px;
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

        /* Add this to your existing styles */
        .rotation-control,
        .mapboxgl-ctrl-group {
    display: none;
        }

        /* Add this to your existing styles */
        .bottom-left-second {
            top: 350px;
            left: 20px;
            width: 48px !important;
            height: 48px !important;
    display: flex;
    align-items: center;
    justify-content: center;
            cursor: pointer;
            background-color: #1b1717a3;
            transition: background-color 0.3s ease;
            border: none;  /* Remove button border */
            color: white;  /* Make icon white */
            border-radius: 8px;
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .bottom-left-second:hover {
            background-color: #2b2727a3;
        }

        .marker-founder-zero {
            width: 40px !important;
            height: 40px !important;
            background-color: #FFD700 !important;
            border: 2px solid #FFF !important;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.6) !important;
            animation: pulse-gold 2s infinite;
            z-index: 1000 !important;
    position: relative;
}

        .marker-founder-zero::before {
            content: '\f521';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
    position: absolute;
            top: -15px;
            right: -5px;
            color: #FFD700;
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            font-size: 16px;
        }

        @keyframes pulse-gold {
            0% {
                box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
            }
            50% {
                box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
            }
            100% {
                box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
            }
        }

        .founder-item-premium-tag {
            background-color: #ffe452;
            color: #000;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 10px;
            margin-left: 8px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }

        .founder-item-premium-tag i {
            font-size: 8px;
            color: #000;
        }

        .founder-item-name-wrapper {
    display: flex;
            align-items: center;
        }

        .satellite-marker {
            width: 64px;
            height: 64px;
            background-color: transparent;
            position: relative;
            margin-top: 40px;
            cursor: pointer;
            z-index: 1000;
            pointer-events: auto;
        }

        .satellite-marker:hover {
            filter: brightness(1.2);
        }

        .ufo-popup {
            z-index: 10000 !important;
            position: absolute !important;
        }

        .ufo-popup .mapboxgl-popup-content {
            background: rgba(27, 23, 23, 0.95) !important;
            border-radius: 8px !important;
            color: white !important;
            padding: 15px !important;
            max-width: 250px !important;
            backdrop-filter: blur(5px) !important;
            border: 2px solid #8846e5 !important;
        }

        /* Ensure all mapboxgl popups are visible */
        .mapboxgl-popup {
            z-index: 10000 !important;
            position: absolute !important;
        }

        .mapboxgl-popup-content {
            background: white !important;
            border-radius: 8px !important;
            padding: 10px !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
        }

        .ufo-custom-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(27, 23, 23, 0.95);
            color: white;
            padding: 20px;
            border-radius: 12px;
            border: 2px solid #8846e5;
            z-index: 99999;
            backdrop-filter: blur(5px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            min-width: 280px;
            max-width: 90vw;
            width: 90vw;
        }

        @media (min-width: 768px) {
            .ufo-custom-popup {
                min-width: 300px;
                max-width: 400px;
                width: auto;
            }
        }

        .ufo-custom-popup .satellite-popup {
            background: transparent;
            padding: 0;
        }

        .ufo-custom-popup .satellite-ad {
            text-align: center;
        }

        .ufo-custom-popup .brand-input-section {
            margin-bottom: 15px;
        }

        .ufo-custom-popup .brand-input {
            width: 100%;
            padding: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            margin-bottom: 8px;
        }

        .ufo-custom-popup .brand-update-btn {
            background: #8846e5;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
        }

        .ufo-custom-popup .brand-update-btn:hover {
            background: #7435d4;
        }

        .ufo-custom-popup .satellite-price {
            font-size: 24px;
            font-weight: bold;
            color: #8846e5;
            margin: 15px 0;
        }

        .ufo-custom-popup .satellite-button {
            background: #8846e5;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            width: 100%;
            transition: background-color 0.2s;
        }

        .ufo-custom-popup .satellite-button:hover {
            background: #7435d4;
        }

        .ufo-popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .ufo-popup-title {
            font-size: 18px;
            font-weight: 600;
            color: #8846e5;
        }

        .ufo-popup-close {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s;
        }

        .ufo-popup-close:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .ufo-brand-text {
            position: absolute;
            color: #8846e5;
            font-weight: bold;
            font-size: 14px;
            background: rgba(27, 23, 23, 0.9);
            padding: 4px 8px;
            border-radius: 6px;
            border: 1px solid #8846e5;
            backdrop-filter: blur(5px);
            z-index: 999;
            pointer-events: none;
            white-space: nowrap;
            animation: ufoTextGlow 2s ease-in-out infinite alternate;
        }

        @keyframes ufoTextGlow {
            0% {
                box-shadow: 0 0 5px rgba(136, 70, 229, 0.5);
            }
            100% {
                box-shadow: 0 0 15px rgba(136, 70, 229, 0.8);
            }
        }

        .satellite-marker::before {
            content: '';
            width: 74px;
            height: 74px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-image: url('/assets/launchclub-logo.png');
            background-size: 74px 74px;
            background-repeat: no-repeat;
            background-position: center;
        }

        .satellite-popup {
            padding: 12px;
            background: rgba(0, 0, 0, 0.9);
            border-radius: 8px;
            color: white;
            min-width: 200px;
            pointer-events: auto;
            z-index: 1;
        }

        .satellite-ad {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-align: center;
        }

        .brand-input-section {
            display: flex;
            flex-direction: column;
            gap: 6px;
            width: 100%;
            margin-bottom: 8px;
        }

        .brand-input-section label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
            text-align: left;
        }

        .brand-input {
            padding: 6px 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 12px;
            width: 100%;
        }

        .brand-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .brand-update-btn {
            background: #8846e5;
            color: white;
            border: none;
            padding: 4px 8px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 11px;
            transition: background-color 0.2s;
        }

        .brand-update-btn:hover {
            background: #7435d4;
        }

        .brand-display {
            margin: 4px 0;
        }

        .satellite-ad span {
            font-size: 16px;
            font-weight: 500;
        }

        .satellite-price {
            font-size: 20px;
            font-weight: bold;
            color: #8846e5;
        }

        .satellite-button {
            background: #8846e5;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s ease;
            width: 100%;
        }

        .satellite-button:hover {
            background: #7435d4;
            transform: translateY(-1px);
        }

        /* Make the popup tip match the background */
        .mapboxgl-popup-tip {
            border-top-color: rgba(0, 0, 0, 0.9) !important;
        }

        .sponsor-panel {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(27, 23, 23, 0.95);
            padding: 15px 25px;
            border-radius: 12px;
    display: flex;
            align-items: center;
            gap: 15px;
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 1000;
    }
    
        .sponsor-text {
            color: #fff;
            font-size: 14px;
            font-weight: 500;
        }

        .sponsor-button {
            background-color: #8846e5;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
    display: flex;
            align-items: center;
            gap: 6px;
            transition: background-color 0.2s;
        }

        .sponsor-button:hover {
            background-color: #6917dd;
        }

        .sponsor-button i {
            font-size: 12px;
    }
    
        .satellite-popup {
            background-color: rgba(27, 23, 23, 0.95) !important;
            border-radius: 8px !important;
            color: white !important;
            padding: 15px !important;
            max-width: 250px !important;
            backdrop-filter: blur(5px) !important;
        }

        .satellite-popup .mapboxgl-popup-content {
            background: transparent !important;
            padding: 0 !important;
            color: white !important;
        }

        .satellite-popup .mapboxgl-popup-tip {
              border-top-color: rgba(27, 23, 23, 0.95) !important;
          }

        .satellite-popup-content {
        text-align: center;
    }
  
    
        .satellite-popup-title {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .satellite-popup-description {
            margin-bottom: 12px;
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.4;
        }

        .join-form {
            padding: 20px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
    display: block;
            margin-bottom: 5px;
            color: #333;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.2s;
        }

        .form-group input:focus {
            outline: none;
            border-color: #8846e5;
        }

        .modal-close {
            position: absolute;
            right: 15px;
            top: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }

        .modal-close:hover {
            color: #333;
        }

        .join-form .action-button {
            width: 100%;
            margin-top: 10px;
        }

        .form-error {
            color: #dc3545;
            font-size: 12px;
            margin-top: 4px;
            display: none;
        }

        .form-group.has-error input {
            border-color: #dc3545;
        }

        .form-group.has-error .form-error {
    display: block;
        }

        .autocomplete-wrapper {
            position: relative;
            width: 100%;
            margin-bottom: 10px;
        }

        .autocomplete-suggestions {
            color: white;
            background: #3e3e3e;
        }

        .suggestions-list {
            color:black;
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            max-height: 200px;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .suggestion-item {
            padding: 8px 12px;
            cursor: pointer;
        }

        .suggestion-item:hover,
        .suggestion-item.selected {
            background-color: #f0f0f0;
            color: black;
        }

        .join-form label {
            color: #d197ff;
            font-size: 14px;
            font-weight: 500;
        }

        .rotation-control {
            cursor: pointer;
    display: flex;
            align-items: center;
        justify-content: center;
        background-color: #8846e5;
    }

        .rotation-control:hover {
            background-color: rgba(39, 35, 35, 0.95);
        }

        .rotation-button {
            position: absolute;
            top: 292px;
            left: 20px;
            z-index: 1000;
    }

        .founder-popup {
            padding-top: 20px;
            padding-bottom: 20px;
            padding-left: 10px;
            padding-right: 20px;
            min-width: 290px;
            max-width: 350px;
            font-family: 'Inter', sans-serif;
            border-bottom: 3px solid #6b21fb;
            border-right: 3px solid #6b21fb;
        }

        .founder-popup-header {
            display: flex;
            flex-direction: column;
            align-items: center;
    text-align: center;
        }

        .founder-popup-avatar {
            width: 60px;
            height: 60px;
    border-radius: 50%;
            margin-bottom: 15px;
            object-fit: cover;
        }

        .founder-popup-title {
            text-align: center;
            padding-bottom: 10px;
            margin-bottom: 10px;
        }

        .founder-popup-title h3 {
            font-size: 20px;
            font-weight: 600;
            margin: 0 0 8px 0;
            color: white;
        }

        .founder-popup-title p {
            font-size: 16px;
            color: rgb(154 152 152);
            margin: 0;
    display: flex;
            align-items: center;
    justify-content: center;
            gap: 5px;
        }

        .founder-popup-title p i {
            color: #666;
            font-size: 16px;
        }

        .founder-popup-tagline {
            font-size: 16px;
            line-height: 1.2;
            color:#dcdcdc;
            text-align: center;
            padding-left: 10px;
            padding-right: 10px;
            margin-bottom: 10px;
        }

        .founder-popup-links {
            flex-direction: column;
            padding-left: 20px;
            display: flex;
            flex-direction: column;
            align-items: baseline;
        }

        .founder-popup-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            color: #a2a2a2;
            font-size: 16px;
            font-weight: 300;
    border-radius: 8px;
            transition: background-color 0.2s;
            margin-bottom: 5px;
        }

        .founder-popup-link:hover {
            background-color: rgba(107, 70, 255, 0.1);
        }

        .founder-popup-link i {
            font-size: 18px;
        }

        .founder-popup-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: #2f2f2f;
            border: 1px solid yellow;
            color: #ffff97;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            margin-top: 8px;
        }

        .founder-popup-badge i {
            font-size: 12px;
        }

        /* Info Modal Styles */
        .info-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 50%;
    display: flex;
    align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9999;
            color: white;
            font-size: 20px;
            transition: all 0.2s ease;
            pointer-events: auto !important;
        }

        .info-button i {
            pointer-events: none;
        }

        .info-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
    display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            pointer-events: auto !important;
        }

        .info-modal-content {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 15px;
            max-width: 600px;
            width: 90%;
            color: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .info-header {
    display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .info-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .info-header h2 {
            margin: 0;
            font-size: 24px;
        }

        .info-link {
            color: #8b5cf6;
            text-decoration: none;
        }

        .info-link:hover {
            text-decoration: underline;
        }

        .info-modal-content p {
            margin: 15px 0;
            line-height: 1.6;
            font-size: 16px;
        }

        .info-links {
            margin-top: 20px;
            display: flex;
            gap: 20px;
        }

        .info-social-link {
            color: #8b5cf6;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-social-link:hover {
            text-decoration: underline;
        }

@media screen and (max-width: 768px) {
    .info-button {
        position: fixed;
        bottom: 3px;
        right: 5px;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1000;
        color: white;
        font-size: 20px;
        transition: all 0.2s ease;

        &:hover {
            transform: scale(1.1);
            background: rgba(0, 0, 0, 0.9);
        }
    }

    .info-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2000;

        .info-modal-content {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 15px;
            max-width: 600px;
            width: 90%;
            color: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

            .info-header {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 20px;

                .info-avatar {
                    width: 60px;
                    height: 60px;
                    border-radius: 50%;
                    object-fit: cover;
                }

                h2 {
                    margin: 0;
                    font-size: 24px;
                }
            }

            p {
                margin: 15px 0;
                line-height: 1.6;
                font-size: 16px;
            }

            .info-link {
                color: #8b5cf6;
                text-decoration: none;

                &:hover {
                    text-decoration: underline;
                }
            }

            .info-links {
                margin-top: 20px;
                display: flex;
                gap: 20px;

                .info-social-link {
                    color: #8b5cf6;
                    text-decoration: none;
                    display: flex;
                    align-items: center;
                    gap: 8px;

                    &:hover {
                        text-decoration: underline;
                    }
                }
            }
        }
    }
}

/* Vertical Ticker */
.vertical-ticker {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    background-color: #1a1a1a;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: bold;
    overflow: hidden;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
}

.vertical-ticker .ticker-label {
    padding: 12px 20px;
    background-color: #00ff00;
    color: #1a1a1a;
    font-weight: bold;
    text-align: center;
    flex-shrink: 0;
    border-bottom: 2px solid #00ff00;
    text-transform: uppercase;
    font-size: 11px;
}

.vertical-ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.vertical-ticker-content.animate {
    animation: verticalTickerScroll 45s linear infinite;
}



.vertical-ticker .ticker-item {
    display: block;
    padding: 12px 20px;
    color: #00ff00;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.vertical-ticker .ticker-item:hover {
    background-color: rgba(0, 255, 0, 0.1);
}



/* Brand Sponsorship */
.brand-sponsorship {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.brand-sponsorship:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateX(-50%) translateY(-2px);
}

.brand-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.brand-link:hover {
    color: #000;
}

/* Share Prompt */
.share-prompt {
    margin-top: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgb(255 250 0);
    text-align: center;
    font-size: 20px;
    color: #000000;
}

.share-prompt i {
    color: #000;
    margin-right: 5px;
}

/* Flight Markers */
.flight-marker {
    width: 30px;
    height: 30px;
    background-color: #FFD700;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.flight-marker:hover {
    transform: scale(1.1);
    background-color: #FFED4E;
}

/* Sign in button */
.action-button.secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.action-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Profile Menu */
.profile-menu {
    position: fixed;
    top: 60px;
    right: 20px;
    z-index: 1001;
    display: none;
}

.profile-button {
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-menu-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #2a2a2e;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    width: 200px;
    padding: 8px;
    z-index: 1002; /* Explicitly set z-index above ticker */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.profile-menu-dropdown a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.profile-menu-dropdown a i {
    margin-right: 10px;
    width: 15px;
    text-align: center;
}

.profile-menu-dropdown a:hover {
    background-color: #444;
}

.profile-menu-dropdown a {
    position: relative;
}

.profile-menu.open .profile-menu-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Notification indicator (red dot) */
.notification-indicator {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #ff4444;
    border-radius: 50%;
    border: 2px solid #2a2a2e;
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Edit Profile Form */
.founder-popup-edit-form {
    padding: 20px;
    color: white;
}

.founder-popup-edit-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.founder-popup-edit-form .form-group {
    margin-bottom: 15px;
}

.founder-popup-edit-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #d197ff;
}

.founder-popup-edit-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
}

.founder-popup-edit-form input:focus {
    border-color: #8846e5;
    outline: none;
}

.founder-popup-edit-form .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.founder-popup-edit-form .action-button {
    padding: 8px 16px;
    font-size: 14px;
}


    /* On mobile, we use a sidebar instead of a popup */
    .mapboxgl-popup {
        display: none !important;
        margin-left: 10px;
        margin-right: 10px;
        left: 0 !important;
    }

    .founder-sidebar {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 85vw;
        max-width: 340px;
        height: 100%;
        background: #1d1d1dd4; /* Same as popup */
        backdrop-filter: blur(5px);
        box-shadow: 4px 0 15px rgba(0,0,0,0.2);
        z-index: 1002;
        transition: left 0.3s ease-out;
        overflow-y: auto;
    }

    .founder-sidebar.is-open {
        left: 0;
    }

    .sidebar-close {
        position: absolute;
        top: 10px;
        right: 15px;
        background: none;
        border: none;
        color: white;
        font-size: 28px;
        font-weight: 300;
        cursor: pointer;
        z-index: 1;
    }

    #sidebar-content .founder-popup {
        padding: 20px;
        padding-top: 45px;
        border: none;
    }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1001;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease-out;
    }

    .sidebar-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .marker {
        width: 10px;
        height: 10px;
    }


/* Share buttons in popup */
.founder-popup-share {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.share-action-button {
    flex: 1; /* Make them take equal space */
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
}

.share-action-button.twitter-share {
    background-color: #14171A; /* X's black color */
    border-color: #333639;
}
.share-action-button.twitter-share:hover {
    background-color: #272c30;
}

.share-action-button.linkedin-share {
    background-color: #0A66C2; /* LinkedIn's blue */
}
.share-action-button.linkedin-share:hover {
    background-color: #004182;
}

.share-action-button.copy-link {
    background-color: #374151; /* Gray */
}
.share-action-button.copy-link:hover {
    background-color: #4b5563;
}

@media (max-width: 768px) {
    .founder-popup-share {
        flex-direction: column;
    }
}


.marker.verified {
    /* border: 3px solid #1DA1F2; /* Twitter blue */
    background-color: #65a5ff2d;
    box-shadow: 0 0 10px rgba(29, 161, 242, 0.5);
}

.marker.verified::after {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #1DA1F2;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid white;
}

.marker.verified.premium::after {
    background: #FFD700; /* Gold for premium verified */
    color: #333;
}

.marker.verified.founder-zero::after {
    background: #FFD700; /* Gold for founder zero verified */
    color: #333;
}

/* Verification badge in popup */
.founder-popup-verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1DA1F2;
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    margin-left: 6px;
    flex-shrink: 0;
    vertical-align: middle;
}

.founder-popup-verified-badge i {
    font-size: 8px;
}

.founder-item-verified-tag {
    display: inline-flex;
    align-items: center;
    background: #1DA1F2;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 6px;
}

.founder-item-verified-tag i {
    margin-right: 3px;
    font-size: 8px;
}

.marker.has-image-verified {
    /* The container for the image and the overlay */
    /* position: relative; */
    /* No border needed here as the avatar already has one if premium */
}

.verified-image-overlay {
    position: absolute;
    bottom: 10px;
    right: -14px;
    width: 10px;
    height: 10px;
    background-color: #1DA1F2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    z-index: 1;
}

.verified-image-overlay i {
    font-size: 10px;
    font-weight: bold;
}

/* --- Travel Plans Panel --- */
.travel-plans-panel {
    top: 330px;
    max-height: calc(100vh - 70px); /* 100vh - top - bottom_margin */
    overflow-y: auto; /* Enable scrolling for the whole panel */
}

.travel-plans-content {
    display: flex;
    flex-direction: column;
}

.travel-filters {
    padding-left: 10px;
    padding-right: 10px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.travel-filters.collapsed {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-bottom: 0;
    padding: 0;
}

.travel-filters-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background-color 0.2s;
}

.travel-filters-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.travel-filters-toggle h4 {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.travel-filters-toggle i {
    color: #aaa;
    transition: transform 0.3s ease;
}

.travel-filters-toggle.expanded i {
    transform: rotate(180deg);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-group label {
    font-size: 12px;
    color: #aaa;
}

.filter-group input[type="date"] {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 4px;
    padding: 5px;
    font-family: inherit;
    margin-bottom: 10px;
}

.filter-group input[type="text"] {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 4px;
    padding: 5px;
    font-family: inherit;
    font-size: 12px;
}

.filter-group input[type="text"]:focus {
    outline: none;
    border-color: #8846e5;
    background-color: rgba(255, 255, 255, 0.15);
}

.filter-group input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#travel-filter-apply {
    align-self: flex-end;
}

/* --- Toggle Switch --- */
.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
    z-index: 10;
    pointer-events: auto;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    z-index: 11;
    pointer-events: auto;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    pointer-events: none;
    z-index: 9;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #8846e5;
}

input:focus + .slider {
    box-shadow: 0 0 1px #8846e5;
}

input:checked + .slider:before {
    transform: translateX(14px);
}

.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}

.switch-label {
    margin-left: 8px;
    align-self: center;
}

.travel-list {
    margin-top: 15px;
}

.filter-results-container {
    margin-top: 15px;
    padding: 0 10px;
    max-height: 350px; /* Or any height that fits your design */
    overflow-y: auto;
}

/* Ensure the founder list inside the filter results is always visible */
.filter-results-container .founder-list {
    max-height: none; /* Override the default collapsed state */
    opacity: 1;
}

.filter-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    cursor: pointer;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.filter-results-header h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.filter-results-header i {
    color: #aaa;
    transition: transform 0.3s ease;
}

.filter-results-header.expanded i {
    transform: rotate(180deg);
}

.filter-results-content.collapsed {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

@media (max-width: 768px) {
    .travel-plans-panel {
        display: block; /* Show on mobile */
        top: 150px; /* Adjust position for mobile */
    }
    
    .travel-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .filter-group {
        width: 100%;
    }
    
    #travel-filter-apply {
        align-self: stretch;
        margin-top: 5px;
    }
    
    /* Mobile styles for filter results */
    .travel-filter-results {
        margin-top: 8px;
        padding: 12px;
    }
    
    .filter-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .filter-results-content {
        gap: 12px;
    }
    
    .filter-results-section {
    }
    
    .filter-founders-list {
        max-height: 150px;
    }
    
    .filter-founder-item {
        padding: 6px;
        gap: 8px;
    }
    
    .filter-founder-avatar {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .filter-founder-name {
        font-size: 13px;
    }
    
    .filter-founder-location {
        font-size: 11px;
    }
    
    .filter-founder-badges {
        gap: 2px;
    }
    
    .filter-founder-badge {
        padding: 1px 4px;
        font-size: 9px;
    }
    
    /* Mobile styles for filter toggle */
    .travel-filters-toggle {
        padding: 8px 12px;
        margin-bottom: 8px;
    }
    
    .travel-filters-toggle h4 {
        font-size: 13px;
    }
}

/* --- Travel Filter Results --- */
.travel-filter-results {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: margin-bottom 0.3s ease;
}

.travel-filter-results.collapsed .filter-results-header {
    margin-bottom: 0;
}

.filter-results-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-results-header-right i {
    color: #aaa;
    transition: transform 0.3s ease;
}

.filter-results-header.expanded .filter-results-header-right i {
    transform: rotate(180deg);
}

.filter-results-content {
    transition: all 0.3s ease;
    overflow: hidden;
}

.travel-filter-results.collapsed .filter-results-content {
    max-height: 0 !important; /* Use important to override inline styles if needed */
    opacity: 0;
    margin-top: 0;
    padding: 0;
}

.filter-results-count {
    color: #aaa;
    font-size: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

.filter-list-header {
    margin: 10px 0 10px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 12px;
}

.filter-list-header:first-child {
    margin-top: 0;
}

.filter-list-header::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #8846e5;
}

.filter-founders-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 350px;
    overflow-y: auto;
    border-radius: 6px;
}

.filter-founder-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.filter-founder-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.filter-founder-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #8846e5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.filter-founder-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.filter-founder-info {
    flex: 1;
    min-width: 0;
}

.filter-founder-name {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-founder-location {
    color: #aaa;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-founder-badges {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.filter-founder-badge {
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.filter-founder-badge.premium {
    background-color: #FFD700;
    color: #333;
}

.filter-founder-badge.founder-zero {
    background-color: #FFD700;
    color: #333;
}

.filter-founder-badge.verified {
    background-color: #1DA1F2;
    color: white;
}

.filter-founder-badge.traveling {
    background-color: #FF6B35;
    color: white;
}

.no-results {
    color: #aaa;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    font-style: italic;
}

.founder-popup-share {
    flex-wrap: wrap; /* Allow buttons to wrap on mobile */
}

/* --- Founder Popup Travel Section --- */
.founder-popup-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-popup-section h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.founder-popup-section h4 i {
    color: #aaa;
}

.founder-popup-travel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.founder-popup-travel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 13px;
}

.travel-item-city {
    color: #eee;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.travel-item-city i {
    color: #aaa;
    font-size: 12px;
}

.travel-item-dates {
    color: #aaa;
    font-style: italic;
}

/* --- Manage Travel Modal --- */
.manage-travel-content {
    padding: 20px 0;
    max-height: 400px;
    overflow-y: auto;
}

.travel-plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 10px;
}

.travel-plan-info {
    font-size: 14px;
}

.travel-plan-info strong {
    color: #fff;
    font-weight: 600;
}

.travel-plan-info span {
    color: #aaa;
    margin-left: 8px;
}

.travel-plan-actions button {
    margin-left: 8px;
    padding: 6px 10px;
    font-size: 12px;
}

.modal-footer {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
}

.mapboxgl-popup-close-button {
    color: #fff;
    font-size: 30px;
}

.travel-filters-header.expanded i,
.filter-results-header.expanded i {
    transform: rotate(180deg);
}

.filter-results-content.collapsed {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.panel-header.expanded i,
.travel-filters-header.expanded i,
.filter-results-header.expanded i {
    transform: rotate(180deg);
}

.travel-filters-content {
    padding: 0 10px;
}

.filter-results-total {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-list-header {
    margin: 15px 0 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Checkbox styles for notification field */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #d197ff;
    line-height: 1.4;
    margin-bottom: 8px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label .checkmark {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid #d197ff;
    border-radius: 6px;
    margin-right: 12px;
    margin-top: 0;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(136, 70, 229, 0.08);
    transition: background 0.2s, border-color 0.2s;
    display: inline-block;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #8846e5;
    border-color: #8846e5;
}

.checkbox-label .checkmark::after {
    content: '';
    position: absolute;
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    display: block;
    left: 7px;
    top: 3px;
    width: 7px;
    height: 13px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    border-radius: 1px;
    transform: rotate(45deg);
    box-shadow: 0 0 2px #fff;
    animation: checkbox-pop 0.18s cubic-bezier(.4,1.3,.6,1) 1;
}

@keyframes checkbox-pop {
    0% { transform: scale(0.7) rotate(45deg); opacity: 0; }
    80% { transform: scale(1.15) rotate(45deg); opacity: 1; }
    100% { transform: scale(1) rotate(45deg); opacity: 1; }
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #d197ff;
    line-height: 1.4;
    margin-bottom: 8px;
    user-select: none;
}

.checkbox-label input[type="checkbox"]:focus + .checkmark {
    border-color: #fff;
    box-shadow: 0 0 0 2px #8846e5;
}

.toggle-text {
    flex: 1;
    margin-left: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

/* Upgrade notification section styles */
.upgrade-notification-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.upgrade-notification-content {
    background: rgba(136, 70, 229, 0.1);
    border: 1px solid rgba(136, 70, 229, 0.3);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.upgrade-notification-content i.fa-bell {
    color: #8846e5;
    font-size: 18px;
    flex-shrink: 0;
}

.upgrade-notification-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.upgrade-notification-text strong {
    display: inline;
    color: #d197ff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.upgrade-notification-link {
    background: #8846e5;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}

.upgrade-notification-link:hover {
    background: #7a3fd8;
    color: white;
}

.upgrade-notification-link i {
    font-size: 12px;
}

/* Notification disclaimer for premium/mayor users */
.notification-disclaimer {
    background: #2d4a2d;
    border: 1px solid #4a7c4a;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.notification-disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notification-disclaimer-content i {
    color: #66bb6a;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.notification-disclaimer-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #e8f5e8;
}

.notification-disclaimer-content strong {
    color: #ffffff;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid #8846e5;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
}

.crown-overlay {
    position: absolute;
    top: -15px;
    left: 0px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(136,70,229,0.10);
    padding: 2px 3px 1px 3px;
    z-index: 2;
    font-size: 15px;
    color: #FFD700;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crown-overlay i.fa-crown {
    color: #FFD700;
    filter: drop-shadow(0 1px 1px #bfa100);
    font-size: 13px;
    vertical-align: top;
}

/* --- Check-In Styles --- */
.btn-check-in {
    position: fixed;
    bottom: 4rem;
    left: 0rem;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: inline;
    align-items: center;
    gap: 8px;
}

.btn-check-in:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

.btn-check-in.active {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-check-in.active:hover {
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
}

.btn-check-in.active::before {
    content: '✅';
}

/* Check-in Modal Styles */
#check-in-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(4px);
}

#check-in-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

#check-in-modal .modal {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#check-in-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#check-in-modal .modal-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

#check-in-modal .modal-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

#check-in-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

#check-in-form .form-group {
    margin-bottom: 1.5rem;
}

#check-in-form label {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

#check-in-form input,
#check-in-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.2s ease;
}

#check-in-form input:focus,
#check-in-form select:focus {
    outline: none;
    border-color: #10B981;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

#check-in-form input::placeholder {
    color: #666;
}

.duration-inputs {
    display: flex;
    gap: 0.5rem;
}

.duration-inputs input {
    flex: 1;
}

.duration-inputs select {
    flex: 1;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Check-in Success Message */
.check-in-success {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
    z-index: 10000;
    min-width: 320px;
    max-width: 400px;
    animation: slideInRight 0.5s ease-out;
}

.success-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.success-content p {
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-twitter {
    background: black;
    color: white;
}

.btn-twitter:hover {
    background: #1a91da;
    transform: translateY(-1px);
}

.btn-linkedin {
    background: #0A66C2;
    color: white;
}

.btn-linkedin:hover {
    background: #004182;
    transform: translateY(-1px);
}

.btn-copy {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-copy:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.share-preview {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    border-left: 3px solid rgba(255, 255, 255, 0.5);
}

.share-preview p {
    margin: 0;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
    .check-in-success {
        position: fixed;
        top: auto;
        bottom: 2rem;
        right: 1rem;
        left: 1rem;
        transform: none;
        min-width: auto;
        max-width: none;
    }
    
    @keyframes slideInRight {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

/* Location Permission Prompt */
.location-prompt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2500;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-prompt-content {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.location-prompt-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.location-prompt-content h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.location-prompt-content p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 2rem 0;
}

.location-prompt-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.location-prompt-actions .btn-primary {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-prompt-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.location-prompt-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-prompt-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.location-prompt-content {
    position: relative;
}
.location-prompt-content .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    color: white;
    font-size: 32px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile responsive for location prompt */
@media (max-width: 768px) {
    .location-prompt-content {
        margin: 1rem;
        padding: 1.5rem;
        width: calc(100% - 2rem);
    }

    .location-prompt-actions {
        flex-direction: column;
    }

    .location-prompt-content h4 {
        font-size: 1.2rem;
    }

    .location-prompt-content p {
        font-size: 0.9rem;
    }
}

/* Share section in check-in modal */
.share-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}


.brand-title-tagline {
    font-weight: 100;
    font-size: 18px;
    color:white;
    margin: 0px;
}

.share-section h4 {
    margin: 0 0 1rem 0;
    color: #10B981;
    font-size: 1rem;
    font-weight: 600;
}

.share-options-modal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.share-options-modal .btn-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.share-tip {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 3px solid #10B981;
}

.share-tip p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile responsiveness for modal share options */
@media (max-width: 768px) {
    .share-options-modal {
        gap: 0.75rem;
    }
    
    .share-options-modal .btn-share {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Twitter verified field styling */
.form-group input.twitter-verified {
    background-color: #f0f9ff;
    border-color: #1da1f2;
    color: #0f172a;
    cursor: not-allowed;
}

.twitter-verified-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 6px 10px;
    background-color: black;
    border: 1px solid white;
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.twitter-verified-indicator i {
    font-size: 14px;
}

/* Share prompt styling */

        /* Map Section Horizontal Ticker */
        .map-ticker {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.2);
            color: #00ff00;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            padding: 8px 15px;
            z-index: 1000;
            backdrop-filter: blur(5px);
            border-bottom: 1px solid rgba(0, 255, 0, 0.2);
            display: flex;
            align-items: center;
            height: 32px;
            overflow: hidden;
        }

        .map-ticker .ticker-label {
            background: #00ff00;
            color: black;
            padding: 2px 8px;
            margin-right: 15px;
            font-weight: bold;
            border-radius: 2px;
            text-transform: uppercase;
            font-size: 12px;
            white-space: nowrap;
        }

        .map-ticker .ticker-content {
            display: flex;
            align-items: center;
            height: 100%;
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .map-ticker .ticker-wrapper {
            display: flex;
            align-items: center;
            white-space: nowrap;
            animation: scrollHorizontal 120s linear infinite;
            animation-delay: 10s;
        }

        .map-ticker:hover .ticker-wrapper {
            animation-play-state: paused;
        }

        .map-ticker .ticker-item {
            display: inline-block;
            white-space: nowrap;
            color: #00ff00;
            font-size: 14px;
            line-height: 1;
            margin-right: 50px;
            flex-shrink: 0;
        }

        @keyframes scrollHorizontal {
            0% {
                transform: translateX(0%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* Top Left Brand Hero Section */
        .top-left-brand-hero {
            position: absolute;
            top: 58px;
            left: 20px;
            z-index: 1000;
            max-width: 400px;
        }

        .top-left-brand-hero .brand-title {
            text-align: left;
        }

        .top-left-brand-hero .brand-title h1 {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            background: linear-gradient(45deg, #10B981, #3B82F6, #8B5CF6, #EC4899);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite;
        }

        .hero-text {
            background-color: rgba(27, 23, 23, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 20px;
        }

        .top-left-brand-hero .hero-headline {
            color: white;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.3;
            margin: 0 0 12px 0;
        }

        .top-left-brand-hero .hero-subheadline {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.4;
            margin: 0;
        }

        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        /* Sidebar Top Message */
        .sidebar-top-message {
            padding: 20px 20px 16px 20px;
            margin: 0;
            color: #c590ff;
            font-size: 18px;
            font-weight: 500;
            line-height: 1.3;
            text-align: center;
        }

        /* Hero Section in Sidebar */
        .hero-section {
            padding: 20px 20px 24px 20px;
            background-color: transparent;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hero-headline {
            color: white;
            font-size: 18px;
            font-weight: 600;
            line-height: 1.3;
            margin: 0;
        }

        .hero-subheadline {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.4;
            margin: 0;
        }

        .hero-cta {
            align-self: stretch;
            margin: 8px 0;
            padding: 12px 16px;
            font-size: 16px;
            font-weight: 600;
        }

        .hero-trust-message {
            color: rgba(255, 255, 255, 0.6);
            font-size: 12px;
            margin: 0;
            text-align: center;
        }

        /* How It Works Section */
        .how-it-works-section {
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .how-it-works-section h3 {
            color: white;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 16px 0;
            text-align: center;
        }

        .whos-it-for-section {
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .whos-it-for-section span {
            color: white;
            line-height: 1.5;
            font-size: 16px;
        }

        .whos-it-for-section h3 {
            color: white;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 16px 0;
            text-align: center;
        }


        .hero-section h3 {
            color: white;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 16px 0;
            text-align: center;
        }

        .steps-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .step-item {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 12px 16px;
            gap: 12px;
        }

        .step-number {
            width: 24px;
            height: 24px;
            background-color: #10B981;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .step-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            line-height: 1.4;
        }

        /* Sidebar Scroll Indicator */
        .sidebar-scroll-indicator {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 8px 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 100;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .sidebar-scroll-indicator.visible {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-scroll-indicator i {
            color: #10B981;
            font-size: 12px;
            animation: bounceArrow 2s infinite;
            transition: transform 0.3s ease;
        }

        .sidebar-scroll-indicator span {
            color: rgba(255, 255, 255, 0.9);
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
        }

        @keyframes bounceArrow {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-3px);
            }
            60% {
                transform: translateY(-1px);
            }
        }

        @keyframes bounceArrowUp {
            0%, 20%, 50%, 80%, 100% {
                transform: rotate(180deg) translateY(0);
            }
            40% {
                transform: rotate(180deg) translateY(3px);
            }
            60% {
                transform: rotate(180deg) translateY(1px);
            }
        }

        .sidebar-scroll-indicator.scroll-up i {
            animation: bounceArrowUp 2s infinite;
            transform: rotate(180deg);
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .testimonials-section h3 {
            color: white;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 16px 0;
            text-align: center;
        }

        .testimonials-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .testimonial-item {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 12px;
            border-left: 3px solid #10B981;
        }

        .testimonial-item p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
            line-height: 1.4;
            margin: 0 0 8px 0;
            font-style: italic;
        }

        .testimonial-link {
            color: #1DA1F2;
            text-decoration: none;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: color 0.2s ease;
        }

        .testimonial-link:hover {
            color: #1991DB;
        }

        .testimonial-link i {
            font-size: 10px;
        }

        /* Founder Zero Panel */
        .founder-zero-panel {
            top: 140px;
            left: 20px;
            color: yellow;
        }

        .founder-zero-panel .collapsed{
            background-color: #861bff59
        }

/* Mobile Responsive - Full Screen Map by Default */
@media (max-width: 768px) {
    .venues-panel {
        top: 210px !important;
        left: 0px !important;    
    }

    .main-layout {
        flex-direction: row;
        height: 100vh;
        position: relative;
    }

    /* Map takes full screen by default on mobile */
    .map-section {
        width: 100%;
        height: 100vh;
        order: 1;
    }

    /* Hide sidebar by default on mobile */
    .right-sidebar {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        order: 2;
        z-index: 2000;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    /* Show sidebar when mobile-sidebar-open class is added */
    .main-layout.mobile-sidebar-open .right-sidebar {
        transform: translateX(0);
    }

    .mobile-nav-btn {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .mobile-nav-btn:hover,
    .mobile-nav-btn.active {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .mobile-nav-btn i {
        font-size: 12px;
    }

    .hero-section {
        padding: 16px;
    }

    .hero-headline {
        font-size: 18px;
    }

    .hero-subheadline {
        font-size: 13px;
    }

    .hero-cta {
        padding: 10px 14px;
        font-size: 14px;
    }

    .vertical-ticker {
        height: calc(40vh - 200px);
    }

    .vertical-ticker .ticker-label {
        padding: 8px 16px;
        font-size: 10px;
    }

    .vertical-ticker .ticker-item {
        padding: 8px 16px;
        font-size: 11px;
    }

    /* Adjust panel positions for mobile */
    .country-founders-panel {
        top: 160px !important;
        left: 0px !important;
    }

    .rotation-button {
        display:none;
    }

    .founder-zero-panel {
        top: 110px !important;
        left: 0px !important;
    }

    .top-right {
        top: 10px;
        right: 10px;
    }

    /* Adjust check-in button for mobile */
    .btn-check-in {
        right: 1rem;
        left: auto;
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .map-section {
        height: 100vh;
    }

    /* Mobile logged-in layout - full screen map */
    .main-layout.logged-in .map-section {
        height: 100vh;
    }

    .main-layout.logged-in .right-sidebar {
        display: none;
    }

    .sidebar-top-message {
        padding: 12px;
        font-size: 14px;
    }

    .hero-section {
        padding: 12px;
    }

    .how-it-works-section {
        padding: 16px 12px;
    }

    .how-it-works-section h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .steps-list {
        gap: 12px;
    }

    .step-item {
        padding: 10px 12px;
    }

    .step-number {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .step-text {
        font-size: 13px;
    }

    /* Mobile scroll indicator adjustments */
    .sidebar-scroll-indicator {
        bottom: 15px;
        padding: 6px 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .sidebar-scroll-indicator i {
        font-size: 11px;
    }

    .sidebar-scroll-indicator span {
        font-size: 11px;
    }

    .testimonials-section {
        padding: 16px 12px;
    }

    .testimonials-section h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .testimonials-list {
        gap: 12px;
    }

    .testimonial-item {
        padding: 10px;
    }

    .testimonial-item p {
        font-size: 12px;
    }

    .testimonial-link {
        font-size: 11px;
    }

    .hero-headline {
        font-size: 16px;
    }

    .hero-subheadline {
        font-size: 12px;
    }

    .vertical-ticker {
        height: calc(35vh - 180px);
    }
}

/* Profile menu mobile adjustments */
@media (max-width: 768px) {
    .profile-menu {
        top: 60px !important;
        right: 15px !important;
    }
}

@media (max-width: 480px) {
    .profile-menu {
        top: 60px !important;
        right: 10px !important;
    }
}

/* Venue marker styles */
.venue-marker {
    background: #fffbe6;
    border: 2px solid #f59e42;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(245, 158, 66, 0.2);
    font-size: 22px;
    z-index: 10;
}
.venue-pin {
    font-size: 22px;
    line-height: 1;
}
.venues-panel {
    top:241px;
    left: 20px;    
}
.venues-panel.collapsed {
    max-height: 48px;
    min-height: 48px;
}
.venues-panel.expanded {
    max-height: 600px;
}
.venues-panel .panel-header {
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border-bottom: 1px solid #222;
    background: #222;
    color: #f59e42;
}
#venues-list {
    padding: 0.5rem 1rem;
}
.venue-list-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #222;
    cursor: pointer;
    color: #f59e42;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    transition: background 0.15s;
}
.venue-list-item:hover {
    background: #222;
}
.venue-name {
    font-weight: 500;
}
.venue-city {
    font-size: 0.95em;
    color: #aaa;
    margin-left: 0.5em;
}

        /* Top Right - Hamburger Menu Button */
        .top-right-hamburger {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1000;
            transition: right 0.3s ease;
        }

        /* Button moves to left edge of sidebar when sidebar is open */
        .top-right-hamburger.sidebar-open {
            right: calc(25% + 20px);
        }

        .hamburger-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            background-color: rgba(27, 23, 23, 0.9);
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .hamburger-btn span {
            width: 25px;
            height: 3px;
            background-color: white;
            transition: 0.3s;
            border-radius: 2px;
        }

        .hamburger-btn:hover span {
            background-color: #7c3aed;
        }

        /* Hamburger animation when sidebar is open */
        .hamburger-btn.sidebar-open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger-btn.sidebar-open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-btn.sidebar-open span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        /* Default state (three lines) when sidebar is closed */
        .hamburger-btn:not(.sidebar-open) span:nth-child(1) {
            transform: none;
        }

        .hamburger-btn:not(.sidebar-open) span:nth-child(2) {
            opacity: 1;
        }

        .hamburger-btn:not(.sidebar-open) span:nth-child(3) {
            transform: none;
        }

        /* Mobile Layout Adjustments */
        @media (max-width: 768px) {
            /* Left icons alignment and z-index */
            .top-left-brand-hero {
                top: 58px;
                left: 20px;
                z-index: 1001;
            }
            
            .ui-element {
                top: 80px;
                left: 20px;
                z-index: 1001;
            }
            
            .ui-element:nth-child(2) {
                top: 140px;
            }
            
            .ui-element:nth-child(3) {
                top: 200px;
            }
            
            .ui-element:nth-child(4) {
                top: 260px;
            }
            
            /* Hamburger button positioning */
            .top-right-hamburger {
                top: 50px !important;
                right: 20px;
                z-index: 1003;
            }
            
            /* Sidebar mobile behavior - handled by main mobile layout */
            
            /* Button position adjustment for mobile */
            .top-right-hamburger.sidebar-open {
                right: 20px !important;
            }
            
            /* Ensure map takes full screen on mobile */
            .map-section {
                width: 100% !important;
                height: 100vh !important;
                order: 1 !important;
            }
        }

        /* Sidebar Close Button */
        .sidebar-close-btn {
            position: absolute;
            top: 0px;
            right: 0px;
            background: rgba(27, 23, 23, 0.9);
            border: 1px solid;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .sidebar-close-btn:hover {
            background: rgba(124, 58, 237, 0.9);
            transform: scale(1.1);
        }

        /* Hide close button on desktop (hamburger button handles it) */
        @media (min-width: 769px) {
            .sidebar-close-btn {
                display: none;
            }
        }

        /* Featured Founders Section - Specific to this section only */
        .featured-founders-section {
            margin-top: 30px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .featured-founders-section h3 {
            color: #7c3aed;
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 600;
            text-align: center;
        }

        .featured-founders-section .featured-founders-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .featured-founders-section .founder-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 12px 8px;
            background: rgba(124, 58, 237, 0.08);
            border: 1px solid rgba(124, 58, 237, 0.15);
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
        }

        .featured-founders-section .founder-item:hover {
            background: rgba(124, 58, 237, 0.15);
            border-color: rgba(124, 58, 237, 0.3);
            transform: translateY(-2px);
        }

        .featured-founders-section .founder-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid rgba(124, 58, 237, 0.3);
            flex-shrink: 0;
        }

        .featured-founders-section .founder-name {
            color: white;
            font-size: 12px;
            font-weight: 500;
            line-height: 1.2;
        }

        /* Mobile responsive - single column on small screens */
        @media (max-width: 480px) {
            .featured-founders-section .featured-founders-list {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .featured-founders-section .founder-item {
                padding: 10px 6px;
                gap: 6px;
            }
            
            .featured-founders-section .founder-avatar {
                width: 36px;
                height: 36px;
            }
            
            .featured-founders-section .founder-name {
                font-size: 11px;
            }
        }

        /* ===== YC Companies Map SPECIFIC STYLES ===== */
        
        /* YC Brand Title */
        .yc-page .top-left-brand-hero .brand-title h1 {
            background: linear-gradient(45deg, #f59e0b, #f97316, #ea580c, #dc2626) !important;
            background-size: 300% 300% !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
        }
        
        .top-left-brand-hero .powered-by {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 5px;
        }
        
        .top-left-brand-hero .powered-by a {
            color: #7c3aed;
            text-decoration: none;
        }
        
        .top-left-brand-hero .powered-by a:hover {
            text-decoration: underline;
        }
        
        /* Sidebar Brand */
        .sidebar-brand h2 {
            color: #ed703a;
            margin: 0;
            font-size: 20px;
            font-weight: 600;
        }
        
        .sidebar-subtitle .powered-by-small {
            font-size: 10px !important;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 5px;
        }
        
        .sidebar-subtitle .powered-by-small a {
            color: #7c3aed;
            text-decoration: none;
        }
        
        .sidebar-subtitle .powered-by-small a:hover {
            text-decoration: underline;
        }
        
        /* YC Company Markers */
        .company-marker {
            cursor: pointer;
        }
        
        .company-marker:hover {
            transform: scale(1.1);
        }
        
        .company-marker.active {
            transform: scale(1.2);
            z-index: 1000;
        }
        
        .marker-pin {
            position: relative;
            width: 31px;
            height: 31px;
            background: linear-gradient(135deg, #f59e0b, #f97316);
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: rgba(245, 158, 11, 0.4) 0px 4px 12px;
        }
        
        .marker-pin i {
            color: white;
            font-size: 16px;
            transform: rotate(45deg);
        }
        
        /* Marker Logo */
        .marker-logo-img {
            color: white;
            font-size: 12px;
            transform: rotate(45deg);
            width: 30px;
            height: 30px;
            object-fit: cover;
            border-radius: 50%
        }
        
        .marker-batch {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #f59e0b;
            color: white;
            font-size: 10px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 10px;
            transform: rotate(45deg);
            white-space: nowrap;
        }
        
        /* Company Popup */
        .company-popup {
            padding: 15px;
            max-width: 300px;
        }
        
        .company-popup h3 {
            margin: 0 0 10px 0;
            color: #1f2937;
            font-size: 18px;
            font-weight: 600;
        }
        
        .company-popup .company-batch {
            display: inline-block;
            background: #f59e0b;
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 12px;
            margin-bottom: 10px;
        }
        
        .company-popup .company-description {
            margin: 10px 0;
            color: #4b5563;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .company-popup .company-location,
        .company-popup .company-industry {
            margin: 8px 0;
            color: #6b7280;
            font-size: 13px;
        }
        
        .company-popup .company-links {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .company-popup .company-link {
            color: #7c3aed;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s ease;
        }
        
        .company-popup .company-link:hover {
            color: #6d28d9;
        }
        
        /* Popup Logo */
        .popup-logo {
            text-align: center;
            margin-bottom: 15px;
        }
        
        .popup-logo img {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
            border: 2px solid #f59e0b;
        }
        
        /* Company List Items - Compact 2-Line Design */
        .company-item {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 6px;
            padding: 8px 10px;
            margin-bottom: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }
        
        .company-item:hover {
            background: #fef3c7;
            border-color: #f59e0b;
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(245, 158, 11, 0.15);
        }
        
        .company-item .company-header {
            display: flex;
            align-items: center;
            margin-bottom: 4px;
            gap: 12px;
        }
        
        /* Company Logo in List */
        .company-logo {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 6px;
            overflow: hidden;
            background: #f8f9fa;
            border: 1px solid #e9ecef;
        }
        
        .company-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .company-header-text {
            flex: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .company-item .company-header h4 {
            margin: 0;
            color: #495057;
            font-size: 14px;
            font-weight: 600;
        }
        
        .company-item .company-batch {
            background: #f59e0b;
            color: white;
            font-size: 10px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 8px;
        }
        
        .company-item .company-description {
            color: #6c757d;
            font-size: 12px;
            line-height: 1.3;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .company-item .company-location {
            color: #6c757d;
            font-size: 11px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .company-item .company-links {
            display: flex;
            gap: 6px;
            margin-top: 4px;
        }
        
        .company-item .company-link {
            color: #f59e0b;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s ease;
        }
        
        .company-item .company-link:hover {
            color: #f97316;
        }
        
        /* Company Detail View */
        .company-detail {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 20px;
        }
        
        .company-detail .company-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .company-detail .company-header h3 {
            margin: 0;
            color: white;
            font-size: 20px;
            font-weight: 600;
        }
        
        .company-detail .company-batch {
            background: #f59e0b;
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
        }
        
        .company-detail .company-info p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 10px;
        }
        
        .company-detail .company-links {
            display: flex;
            gap: 15px;
            margin: 20px 0;
        }
        
        .company-detail .company-link {
            color: #7c3aed;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .company-detail .company-link:hover {
            color: #a855f7;
        }
        
        .back-to-list-btn {
            background: #7c3aed;
            color: white;
            border: none;
            border-radius: 6px;
            padding: 10px 15px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .back-to-list-btn:hover {
            background: #6d28d9;
            transform: translateY(-1px);
        }
        
        /* YC Company Detail View - Override colors for orange theme */
        .yc-page .company-detail {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* YC Brand Hero - Enhanced readability with backdrop */
        .yc-page .top-left-brand-hero {
            background: rgba(0, 0, 0, 0.14) !important;
            backdrop-filter: blur(10px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
            border-radius: 16px !important;
            padding: 10px !important;
        }
        
        @keyframes heroGlow {
            0%, 100% { 
                background: rgba(0, 0, 0, 0.3);
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            }
            50% { 
                background: rgba(0, 0, 0, 0.4);
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.2);
            }
        }
        
        /* YC Hero text enhancements */
        .yc-page .top-left-brand-hero .hero-headline {
            color: white !important;
        }
        
        .yc-page .top-left-brand-hero .powered-by {
            color: rgba(255, 255, 255, 0.9) !important;
        }
        
        .yc-page .top-left-brand-hero .powered-by a {
            color: #f59e0b !important;
            text-decoration: none;
        }
        
        .yc-page .top-left-brand-hero .powered-by a:hover {
            color: #f97316 !important;
        }
        
        .yc-page .company-detail .company-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .yc-page .company-detail .company-header h3 {
            color: #1f2937 !important;
            margin: 0 0 10px 0;
            font-size: 20px;
            font-weight: 600;
        }
        
        /* Company Detail Logo */
        .company-detail-logo {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 8px;
            overflow: hidden;
            background: #f8f9fa;
            border: 2px solid #f59e0b;
        }
        
        .company-detail-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .company-header-text {
            flex: 1;
        }
        
        .yc-page .company-detail .company-description {
            color: #4b5563 !important;
            margin: 10px 0;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .yc-page .company-detail .company-location,
        .yc-page .company-detail .company-industry,
        .yc-page .company-detail .company-funding {
            color: #6b7280 !important;
            margin: 8px 0;
            font-size: 13px;
        }
        
        .yc-page .company-detail .company-links .company-link {
            color: #f59e0b !important;
            text-decoration: none;
            font-size: 14px;
            margin-right: 15px;
            transition: color 0.3s ease;
        }
        
        .yc-page .company-detail .company-links .company-link:hover {
            color: #f97316 !important;
        }
        
        .yc-page .back-to-list-btn {
            background: #f59e0b !important;
            color: white !important;
            border: none;
            border-radius: 6px;
            padding: 10px 15px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
        }
        
        .yc-page .back-to-list-btn:hover {
            background: #f97316 !important;
            transform: translateY(-1px);
        }
        
        /* White Label CTA */
        .white-label-cta {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(168, 85, 247, 0.1));
            border: 1px solid rgba(124, 58, 237, 0.2);
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
        }
        
        .white-label-cta h4 {
            color: #7c3aed;
            margin: 0 0 10px 0;
            font-size: 16px;
            font-weight: 800;
        }
        
        .white-label-cta p {
            color: #7c3aed;
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 15px;
        }
        
        .white-label-btn {
            background: #7c3aed;
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .white-label-btn:hover {
            background: #6d28d9;
            transform: translateY(-1px);
        }
        
        /* UFO Animation */
        .ufo {
            position: absolute;
            width: 60px;
            height: 60px;
            z-index: 1000;
            pointer-events: none;
        }
        
        .ufo-body {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .ufo-top {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 20px;
            background: linear-gradient(135deg, #f59e0b, #f97316);
            border-radius: 20px 20px 0 0;
        }
        
        .ufo-middle {
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 15px;
            background: linear-gradient(135deg, #f97316, #f59e0b);
            border-radius: 15px;
        }
        
        .ufo-bottom {
            position: absolute;
            top: 25px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 10px;
            background: linear-gradient(135deg, #f59e0b, #f97316);
            border-radius: 10px;
        }
        
        .ufo-lights {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }
        
        .ufo-lights span {
            width: 6px;
            height: 6px;
            background: #fbbf24;
            border-radius: 50%;
            animation: ufo-light 2s infinite;
        }
        
        .ufo-lights span:nth-child(2) {
            animation-delay: 0.5s;
        }
        
        .ufo-lights span:nth-child(3) {
            animation-delay: 1s;
        }
        
        @keyframes ufo-light {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }
        
        .ufo-beam {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 40px;
            background: linear-gradient(to bottom, rgba(124, 58, 237, 0.3), transparent);
            border-radius: 10px;
            animation: ufo-beam 3s infinite;
        }
        
        @keyframes ufo-beam {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.7; }
        }
        
        /* YC Panel Items */
        .country-item,
        .batch-item,
        .industry-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            margin-bottom: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .country-item:hover,
        .batch-item:hover,
        .industry-item:hover {
            background: rgba(0, 0, 0, 0.15);
            border-color: rgba(245, 158, 11, 0.4);
        }
        
        .country-name,
        .batch-name,
        .industry-name {
            color: white;
            font-weight: 500;
            font-size: 14px;
        }
        
        .country-count,
        .batch-count,
        .industry-count {
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
            background: rgba(245, 158, 11, 0.3);
            padding: 2px 8px;
            border-radius: 10px;
        }
        
        /* Mobile Responsiveness for YC */
        @media (max-width: 768px) {
            /* UFO adjustments */
            .ufo {
                width: 40px;
                height: 40px;
            }
            
            .ufo-top {
                width: 30px;
                height: 15px;
            }
            
            .ufo-middle {
                width: 35px;
                height: 12px;
                top: 12px;
            }
            
            .ufo-bottom {
                width: 40px;
                height: 8px;
                top: 20px;
            }
            
            /* YC page specific mobile styles */
            .yc-page .top-left-brand-hero .hero-headline {
                font-size: 14px !important;
            }
            
            .yc-page .top-right-hamburger {
                top: 20px !important;
            }
            
            .ufo-lights span {
                width: 4px;
                height: 4px;
            }
            
            .ufo-beam {
                width: 15px;
                height: 30px;
            }
        }

        /* Search and Filter Section - Clean Design */
        .search-filter-section {
            margin-top: 20px;
            padding: 20px;
            background: #f9fafb;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
        }
        
        .search-container {
            display: flex;
            margin-bottom: 15px;
        }
        
        .search-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            background: white;
            color: #1f2937;
            font-size: 14px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }
        
        .search-input:focus {
            outline: none;
            border-color: #f59e0b;
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
        }
        
        .search-input::placeholder {
            color: #9ca3af;
        }
        
        .search-btn {
            padding: 12px 16px;
            background: #f59e0b;
            border: none;
            border-radius: 8px;
            color: white;
            cursor: pointer;
            margin-left: 8px;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        
        .search-btn:hover {
            background: #f97316;
            transform: translateY(-1px);
        }
        
        .filter-container {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .filter-select {
            padding: 10px 14px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            background: white;
            color: #1f2937;
            font-size: 14px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }
        
        .filter-select:focus {
            outline: none;
            border-color: #f59e0b;
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
        }

        /* Sidebar Header - Clean Design */
        .sidebar-header {
            padding-left: 20px;
            padding-right: 20px;
            background: white;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .sidebar-brand {
            margin-top: 10px;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        
        .sidebar-logo {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }
        
        .sidebar-subtitle {
            color: #6b7280;
            font-size: 10px;
        }
        
        .sidebar-subtitle p {
            margin: 0 0 4px 0;
        }

        /* ===== YC SIDEBAR SCROLLING STYLES ===== */
        
        /* YC Sidebar Section - Main Container */
        .sidebar-section {
            width: 40%;
            height: 100vh;
            background-color: white;
            border-left: 1px solid #e5e7eb;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            transition: width 0.3s ease;
        }
        
        /* YC Sidebar Collapsed State - Works with existing main-layout.sidebar-collapsed */
        .main-layout.sidebar-collapsed .sidebar-section {
            width: 0 !important;
            min-width: 0 !important;
            max-width: 0 !important;
            overflow: hidden;
            border-left: none;
            padding: 0;
            margin: 0;
        }
        
        /* Hide all content inside collapsed sidebar */
        .main-layout.sidebar-collapsed .sidebar-section > * {
            opacity: 0;
            pointer-events: none;
        }
        
        /* YC Map Expansion - Override the existing calc(100% - 50px) to make it full width */
        .main-layout.sidebar-collapsed .map-section {
            width: 100% !important;
        }
        
        /* Super specific override for sidebar collapse */
        html body .main-layout.sidebar-collapsed .sidebar-section {
            width: 0 !important;
            min-width: 0 !important;
            max-width: 0 !important;
            overflow: hidden !important;
            border-left: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }
        
        html body .main-layout.sidebar-collapsed .sidebar-section > * {
            opacity: 0 !important;
            pointer-events: none !important;
        }
        
        /* Flexbox overrides for collapsed state */
        html body .main-layout.sidebar-collapsed .sidebar-section {
            flex: 0 0 0 !important;
            flex-shrink: 1 !important;
            flex-basis: 0 !important;
        }
        
        /* YC Sidebar Header - Fixed at top */
        .sidebar-section .sidebar-header {
            flex-shrink: 0;
            background: white;
            border-bottom: 1px solid #e5e7eb;
            padding-left: 20px;
            padding-right: 20px;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        /* YC Search and Filter Section - Sticky below header */
        .sidebar-section .search-filter-section {
            flex-shrink: 0;
            background: white;
            border-bottom: 1px solid #e5e7eb;
            padding: 20px;
            top: 80px; /* Position below the header */
            z-index: 9;
        }
        
        /* YC Results Section - Content flows naturally */
        .sidebar-section .results-section {
            flex: 1;
            padding: 20px;
            background: #f9fafb;
            margin-top: 0; /* Remove any top margin since filters are sticky */
        }
        
        /* YC Results Header */
        .sidebar-section .results-header {
            background: #f9fafb;
            padding-bottom: 15px;
            margin-bottom: 15px;
            border-bottom: 1px solid #e5e7eb;
        }
        
        /* YC Results List - No height constraint */
        .sidebar-section .results-list {
            /* Remove max-height and overflow constraints */
            padding-bottom: 200px; /* Space for sticky footer and CTA */
        }
        
        /* Company Meta - Location and Links side by side */
        .company-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 8px;
        }
        
        .company-location {
            margin: 0;
            color: #6b7280;
            font-size: 13px;
            flex: 1;
        }
        
        .company-links {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        
        /* YC White Label CTA */
        .sidebar-section .white-label-cta {
            position: sticky;
            bottom: 45px; /* Position above the footer */
            background: white;
            border-top: 1px solid #e5e7eb;
            padding: 10px;
            z-index: 9;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        }
        
        /* YC Sidebar Footer */
        .sidebar-section .sidebar-footer {
            position: sticky;
            bottom: 0;
            background: #f9f0ff;
            border-top: 1px solid #e5e7eb;
            text-align: center;
            font-size: 14px;
            color: #491a85;
            font-weight: 600;
            z-index: 10;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        }
        
        /* Custom scrollbar for entire YC sidebar */
        .sidebar-section::-webkit-scrollbar {
            width: 6px;
        }
        
        .sidebar-section::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        
        .sidebar-section::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 3px;
        }
        
        .sidebar-section::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
        
        /* Mobile responsiveness for YC sidebar */
        @media (max-width: 768px) {
            .yc-page .sidebar-section {
                width: 100% !important;
                height: 100vh !important;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                z-index: 1002 !important;
                transform: translateX(-100%) !important;
                transition: transform 0.3s ease !important;
            }
            
            .yc-page .sidebar-section.mobile-open {
                transform: translateX(0) !important;
            }
        }
        
        /* ===== WHITE LABEL MODAL STYLES ===== */
        
        /* White Label Modal Content */
        .white-label-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .white-label-hero {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 10px;
        }
        
        .white-label-hero h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: white;
        }
        
        .white-label-hero p {
            font-size: 18px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* White Label Features */
        .white-label-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .feature-item {
            text-align: center;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #e9ecef;
        }
        
        .feature-item i {
            font-size: 36px;
            color: #667eea;
            margin-bottom: 15px;
        }
        
        .feature-item h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .feature-item p {
            color: #666;
            line-height: 1.5;
        }
        
        /* White Label Pricing */
        .white-label-pricing {
            margin-bottom: 30px;
        }
        
        .white-label-pricing h4 {
            text-align: center;
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
        }
        
        .pricing-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .pricing-option {
            padding: 20px;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            text-align: center;
        }
        
        .pricing-option.featured {
            border-color: #667eea;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
            transform: scale(1.05);
        }
        
        .pricing-option h5 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .pricing-option .price {
            font-size: 24px;
            font-weight: bold;
            color: #667eea;
            margin-bottom: 15px;
        }
        
        .pricing-option ul {
            list-style: none;
            padding: 0;
            text-align: left;
        }
        
        .pricing-option li {
            padding: 5px 0;
            color: #666;
            position: relative;
            padding-left: 20px;
        }
        
        .pricing-option li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }
        
        /* White Label CTA */
        .white-label-cta {
            text-align: center;
            padding: 30px;
            background: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #e9ecef;
        }
        
        .white-label-cta h4 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .white-label-cta p {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        
        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-buttons .action-button {
            padding: 12px 24px;
            font-size: 16px;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .cta-buttons .action-button.primary {
            background: #667eea;
            color: white;
            border: 2px solid #667eea;
        }
        
        .cta-buttons .action-button.primary:hover {
            background: #5a6fd8;
            border-color: #5a6fd8;
        }
        
        .cta-buttons .action-button.secondary {
            background: white;
            color: #667eea;
            border: 2px solid #667eea;
        }
        
        .cta-buttons .action-button.secondary:hover {
            background: #667eea;
            color: white;
        }
        
        /* Mobile Responsiveness for White Label Modal */
        @media (max-width: 768px) {
            .white-label-features {
                grid-template-columns: 1fr;
            }
            
            .pricing-options {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons .action-button {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Sponsor UFO Text */
        .sponsor-ufo-text {
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1001;
            pointer-events: auto;
            margin-top: 15px;
            white-space: nowrap;
        }
        
        .sponsor-link {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(124, 58, 237, 0.9);
            color: white;
            text-decoration: none;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .sponsor-link:hover {
            background: rgba(124, 58, 237, 1);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }        
        /* YC Panel Items */
