* {
    font-family: 'Inter', sans-serif;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
    font-variant-numeric: tabular-nums;
}

.time-picker-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.time-scroller {
    height: 200px;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.time-scroller::-webkit-scrollbar {
    width: 6px;
}

.time-scroller::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.time-scroller::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.time-scroller::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.time-option {
    scroll-snap-align: center;
    padding: 0.75rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.25rem;
    opacity: 0.3;
    transform: scale(0.9);
}

.time-option.active {
    opacity: 1;
    transform: scale(1.2);
    font-weight: 600;
    color: #f97316;
}

.time-option:hover {
    opacity: 0.6;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-day {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.card-night {
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
    color: white;
}

.card-twilight {
    background: linear-gradient(135deg, #fed7aa 0%, #fca5a5 100%);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark .glass-effect {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(71, 85, 105, 0.3);
}

.zone-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zone-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.search-dropdown {
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.search-dropdown::-webkit-scrollbar {
    width: 8px;
}

.search-dropdown::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.search-dropdown::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.search-dropdown::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}