@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #9147ff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #772ce8;
}
/* Animation for stream cards */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(145, 71, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(145, 71, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(145, 71, 255, 0.5);
    }
}
.live-indicator {
    animation: glow 2s infinite;
}

.stats-box {
    transition: all 0.3s ease;
}
.stats-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(145, 71, 255, 0.1);
}
.streamer-box {
    transition: all 0.3s ease;
}

.streamer-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(145, 71, 255, 0.1);
    background-color: rgba(145, 71, 255, 0.05);
}

/* New styles for streamer cards */
.grid a {
    text-decoration: none;
    color: inherit;
}

.grid a:hover {
    box-shadow: 0 10px 25px rgba(145, 71, 255, 0.2);
}

.grid a .rounded-full {
    transition: all 0.3s ease;
}

.grid a:hover .rounded-full {
    transform: scale(1.05);
}
custom-stream-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

custom-stream-card:hover {
    transform: translateY(-5px);
}
