/* Futuristic Theme with Orange and Sky Colors */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: #0f0f0f;
    overflow-x: hidden;
}

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

/* Gradient animations */
.gradient-bg {
    background: linear-gradient(-45deg, #f97316, #0ea5e9, #f97316, #0ea5e9);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism effect */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Neon glow effects */
.neon-orange {
    text-shadow: 0 0 10px #f97316, 0 0 20px #f97316, 0 0 30px #f97316;
}

.neon-sky {
    text-shadow: 0 0 10px #0ea5e9, 0 0 20px #0ea5e9, 0 0 30px #0ea5e9;
}

/* Card hover effects */
.game-card {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.game-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
}

/* Loading animation */
.loading-spinner {
    border: 3px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    border-top: 3px solid #f97316;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #f97316, #0ea5e9);
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* AR/VR specific styles */
#vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ar-preview {
    perspective: 1000px;
}

.ar-model {
    transform-style: preserve-3d;
    animation: rotate3d 10s infinite linear;
}

@keyframes rotate3d {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}