/* Game Page Styles */
.game-content {
    padding: var(--spacing-xl) var(--spacing-md);
}

.game-content h1 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(201, 20, 50, 0.5);
    animation: fadeIn 1s ease, slideUp 1s ease;
}

.game-description {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
    font-size: 1.1rem;
    animation: fadeIn 1.2s ease;
}

.game-frame-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(201, 20, 50, 0.4);
    position: relative;
    animation: fadeIn 1.4s ease, scaleIn 1.4s ease;
}

.game-frame-container iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.game-features {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    animation: fadeIn 1.6s ease;
}

.game-features h2 {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--accent-gold);
}

.game-features ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.game-features ul li {
    display: flex;
    align-items: center;
    padding: var(--spacing-sm);
    background: rgba(26, 10, 20, 0.5);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.game-features ul li:hover {
    transform: translateY(-3px);
    background: rgba(26, 10, 20, 0.8);
}

.game-features ul li i {
    margin-right: var(--spacing-sm);
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.more-games {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeIn 1.8s ease;
}

.more-games h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--accent-gold);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .game-frame-container iframe {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .game-frame-container iframe {
        height: 500px;
    }
    
    .game-features ul {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .game-frame-container iframe {
        height: 400px;
    }
    
    .game-features ul {
        grid-template-columns: 1fr;
    }
}