body {
    font-family: 'Inter', sans-serif;
    background-color: #030303;
}

/* Premium Soft Mesh Gradient Background */
.bg-mesh {
    background-color: #030303;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(168, 85, 247, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 10%, rgba(236, 72, 153, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.06) 0%, transparent 40%);
    z-index: -1;
    background-attachment: fixed;
    filter: blur(50px);
}

/* Glassmorphism Styles */
.glass {
    background: rgba(23, 23, 23, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-card {
    background: rgba(23, 23, 23, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.glass-input {
    background: transparent;
    color: white;
    outline: none;
}

/* Interactive Select Pills */
.pill-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #a1a1aa;
    background: rgba(38, 38, 38, 0.6);
    border: 1px solid rgba(64, 64, 64, 0.5);
    transition: all 0.2s ease;
    cursor: pointer;
}

.pill-btn:hover,
.pill-btn.active {
    background: rgba(64, 64, 64, 0.8);
    border-color: rgba(82, 82, 91, 0.8);
    color: #fff;
}

/* Dropdown Menus */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    min-width: 160px;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    z-index: 100;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.2s ease;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: #d4d4d8;
    font-size: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #262626;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Marquee Animation */
@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.animate-marquee-left {
    display: flex;
    width: max-content;
    animation: marquee-left 40s linear infinite;
}

.animate-marquee-right {
    display: flex;
    width: max-content;
    animation: marquee-right 40s linear infinite;
}

.marquee-container:hover .animate-marquee-left,
.marquee-container:hover .animate-marquee-right {
    animation-play-state: paused;
}

/* Gradients */
.text-gradient {
    background: linear-gradient(to right, #FDE047, #F97316, #EF4444, #EC4899, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-brand {
    background: linear-gradient(to right, #FDE047, #F97316, #EF4444, #EC4899, #A855F7);
}

.btn-gradient {
    background: linear-gradient(to right, #FDE047, #F97316, #EF4444, #EC4899, #A855F7);
    transition: opacity 0.3s, transform 0.2s;
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.btn-gradient:active {
    transform: scale(0.95);
}