body {
    font-family: 'Poppins', sans-serif;
    background-color: #141414;
    color: #ffffff;
}

.futuristic-font {
    font-family: 'Orbitron', sans-serif;
}

.navy-gradient {
    background: linear-gradient(135deg, #141414 0%, #ff8000 100%);
}

.game-card {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(255, 128, 0, 0.4);
}

.carousel-slide {
    transition: transform 0.5s ease-in-out;
}

.glow-effect {
    box-shadow: 0 0 15px rgba(255, 128, 0, 0.6);
}

.interactive-section {
    background: radial-gradient(circle at center, #ff8000 0%, #141414 100%);
}

.btn-hover-effect {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hover-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-hover-effect:hover::after {
    left: 100%;
}

.login-modal {
    transition: all 0.3s ease;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
}

.login-modal.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
