/* Custom styles */
.game-container {
    position: relative;
    overflow: hidden;
}

.game-container iframe {
    border: none;
}

#fullscreenBtn {
    transition: all 0.3s ease;
}

#fullscreenBtn:hover {
    transform: scale(1.05);
}

.screenshot-card {
    transition: transform 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-5px);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.review-card {
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .game-container {
        height: 50vh;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
}

/* Language selector styling */
#languageSelect {
    cursor: pointer;
    transition: all 0.3s ease;
}

#languageSelect:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #888;
} 