/* Custom styles */
:root {
    --primary-color: #ff4d4d;
    --secondary-color: #2d3748;
    --accent-color: #f6ad55;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.pixel-font {
    font-family: 'Press Start 2P', cursive;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.game-container {
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fullscreen-btn {
    transition: all 0.3s ease;
}

.fullscreen-btn:hover {
    transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
    .game-container {
        height: 60vh;
    }
    
    .pixel-font {
        font-size: 1.5rem;
    }
}

/* Animation effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Game features section */
.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Language selector */
.language-btn {
    transition: all 0.3s ease;
}

.language-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    border-top: 2px solid var(--primary-color);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
} 