@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=inter:wght@300;400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Rajdhani', sans-serif;
}

.font-futuristic {
    font-family: 'Orbitron', sans-serif;
}

.font-clean {
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.neon-glow {
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5),
                0 0 40px rgba(138, 43, 226, 0.3),
                0 0 60px rgba(138, 43, 226, 0.2);
}

.neon-text {
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.8),
                 0 0 20px rgba(138, 43, 226, 0.6),
                 0 0 30px rgba(138, 43, 226, 0.4);
}

.game-card {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(138, 43, 226, 0.8);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4),
                0 0 40px rgba(138, 43, 226, 0.2);
}

.game-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.game-image img,
.game-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-image video {
    pointer-events: none;
}

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    pointer-events: none;
    z-index: 1;
}

.game-card:hover .game-image::before {
    left: 100%;
}

.gradient-text {
    background: linear-gradient(135deg, #8a2be2 0%, #667eea 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-input {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: rgba(138, 43, 226, 0.8);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.filter-btn {
    transition: all 0.3s ease;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, #8a2be2 0%, #667eea 100%);
    border-color: rgba(138, 43, 226, 0.8);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.price-tag {
    background: linear-gradient(135deg, #00d4ff 0%, #667eea 100%);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

