/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-modal {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-brand {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-pink));
}

/* Form Styling */
.glass-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
    outline: none;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--brand-blue);
    box-shadow: 0 0 15px rgba(38, 178, 231, 0.2);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Filter Tabs */
.filter-btn {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
    background: white;
    color: black;
    border-color: white;
}

/* FOMO & UI */
.fomo-badge {
    animation: pulse-glow 2s infinite;
}