
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1A202C 0%, #000000 100%);
    color: #E2E8F0;
    scroll-behavior: smooth;
}

.hero-section {
    background: radial-gradient(circle at center, rgba(109, 40, 217, 0.2) 0%, rgba(26, 32, 44, 0.5) 70%, #1A202C 100%);
}

/* Glassmorphism effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

/* Hide scrollbars for the category buttons and featured section on mobile */
#categoryButtons::-webkit-scrollbar,
#featured-container::-webkit-scrollbar {
    display: none;
}
#categoryButtons,
#featured-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.py-20 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}
.show{
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    display: flex;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 999;"
}