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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

.premium-gradient {
    background: radial-gradient(circle at top right, #1e293b, #020617);
}

.glow-button {
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
}

.glow-button:hover {
    box-shadow: 0 0 20px 2px rgba(56, 189, 248, 0.4);
    transform: translateY(-2px);
}

.bento-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    flex: 0 0 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .bento-card {
        flex: 0 0 calc(33.333% - 1.35rem);
    }
}

.bento-card:hover {
    border-color: #38bdf8;
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.text-gradient {
    background: linear-gradient(to right, #38bdf8, #818cf8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-icon-container {
    position: relative;
    transition: transform 0.3s ease;
}

.app-icon-container:hover {
    transform: scale(1.05);
}

/* 隐藏滚动条但保留滚动功能 */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.badge-2026 {
    position: absolute;
    top: -4px;
    left: -4px;
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px 2px 10px 2px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.badge-2026-orange {
    background: linear-gradient(45deg, #f97316, #ea580c);
}
