body { background-color: #050505; color: #FFFFFF; font-family: 'Outfit', sans-serif; }
.bg-grid {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}
.noise {
    position: fixed; inset: 0; pointer-events: none; z-index: 50; opacity: 0.015;
    mix-blend-mode: overlay;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}
.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.text-glow { text-shadow: 0 0 40px rgba(0, 229, 255, 0.4); }
.hover-card { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.hover-card:hover { 
    transform: translateY(-4px); 
    border-color: rgba(0,229,255,0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 40px -10px rgba(0,229,255,0.1);
}

/* Filter Styles */
.filter-select {
    appearance: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem 1rem;
    padding-right: 2rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(8px);
}
.filter-select:hover, .filter-select:focus {
    border-color: rgba(0, 229, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}
.filter-select option {
    background: #111;
    color: #fff;
}
.filter-wrapper {
    position: relative;
}
.filter-wrapper::after {
    content: '\EA4S';
    font-family: 'remixicon';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
    pointer-events: none;
    font-size: 1rem;
}
