@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    /* Slate 900 */
    overflow-x: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 255, 255, 0.3);
}

.hero-text {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-thumb {
    transition: transform 0.5s ease;
}

.glass-card:hover .game-thumb {
    transform: scale(1.05);
}

/* Animated Background */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -50px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 60%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    z-index: 50;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: none;
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: block;
    }
}

.scroll-indicator i {
    font-size: 1.5rem;
    animation: swipe-up 2s infinite;
}

.scroll-indicator p {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-weight: 300;
}

.scroll-indicator.hidden {
    opacity: 0;
}

@keyframes swipe-up {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
}