/* Shared styles across all pages */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-image: url('http://static.photos/gaming/1200x630/42');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(17, 24, 39, 0.9);
}

#game-preview {
    background-image: url('http://static.photos/gaming/640x360/1');
    background-size: cover;
    background-position: center;
}

.font-pixel {
    font-family: 'VT323', monospace;
}
.font-retro {
    font-family: 'Press Start 2P', cursive;
}

/* FAQ Styles */
.faq-answer {
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* About page team styles */
.team-member:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #667eea;
}