body {
    background-color: #050505;
    color: #E5E7EB;
    font-family: 'Inter', sans-serif;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(167, 139, 250, 0.05) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
}
.bento-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.bento-card:hover {
    border-color: rgba(167, 139, 250, 0.3);
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.05);
}
.glow-text {
    text-shadow: 0 0 15px rgba(167, 139, 250, 0.4);
}
.reddit-post {
    border-left: 3px solid #374151;
    padding-left: 1.5rem;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Indeterminate progress bar animation */
@keyframes indeterminate {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-indeterminate {
    animation: indeterminate 1.5s ease-in-out infinite;
    width: 50% !important;
}
