@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f4f7fc;
    color: #1e293b;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-bg {
    background: linear-gradient(
        180deg,
        #0f2b5c 0%,
        #1e40af 60%,
        #2563eb 100%
    );
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 30%,
        rgba(59, 130, 246, 0.3) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.search-box-glow {
    box-shadow:
        0 10px 35px -5px rgba(0, 0, 0, 0.25),
        0 0 20px 2px rgba(59, 130, 246, 0.4);
}

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

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.08);
}
