
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background: #121212;
    color: #f5f5f5;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}
.service-card {
    transition: all 0.3s ease;
    background: #181818;
    border: 1px solid #282828;
    border-radius: 6px;
}
.w-48.h-48 {
    border: 3px solid #000;
    transition: all 0.3s ease;
}

.w-48.h-48:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.service-card:hover {
    background: #282828;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
/* Improved button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    background: #121212;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid #333;
}

.social-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.social-btn i {
    width: 18px;
    height: 18px;
}
.verified-badge {
    display: inline-flex;
    align-items: center;
    margin-left: 0.25rem;
}
.verified-badge img {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.3));
}
/* SoundCloud-like cards */
.bg-gray-800 {
    background: #181818 !important;
    border-radius: 8px;
    border: 1px solid #282828;
}

/* Improved typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* SoundCloud-style progress bar */
.w-full.bg-gray-700.rounded-full.h-2 {
    background: #535353 !important;
}

.w-full.bg-gray-700.rounded-full.h-2 > div {
    background: #1db954 !important;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .w-48 {
        width: 160px;
        height: 160px;
    }
    
    .text-4xl {
        font-size: 2.25rem;
    }
.grid.md\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .verified-badge {
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .flex-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flex.items-center {
        justify-content: center;
    }
}
/* SoundCloud-style scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #181818;
}

::-webkit-scrollbar-thumb {
    background: #535353;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b3b3b3;
}

/* SoundCloud-like hover effects */
a, button {
    transition: color 0.2s ease;
}

a:hover {
    color: #1db954 !important;
}
/* Game menu button */
#show-more-games {
    background: #3b82f6;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

#show-more-games:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#show-more-games:active {
    transform: translateY(0);
}

#hidden-games {
    display: none;
}

/* SoundCloud-style section spacing */
section, div.bg-gray-800 {
    margin-bottom: 24px;
    padding: 24px;
}
