/* GAME-SPECIFIC STYLES: 2048.css */

.game-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.game-wrapper h1 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 32px;
}

.game-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Image Gallery */
.game-stills-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 images per row */
    gap: 15px;
    margin-bottom: 40px;
}

.game-stills-gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
}

.game-stills-gallery img:hover {
    transform: scale(1.03);
}

/* Download Section */
.download-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.download-text {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.play-store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #34a853; /* Google Play Green */
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.play-store-btn:hover {
    background-color: #2c8c45;
    transform: translateY(-3px);
}

.play-store-btn i {
    font-size: 1.4em;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .game-stills-gallery {
        grid-template-columns: 1fr; /* 1 image per row on small phones */
    }
    .game-wrapper h1 {
        font-size: 28px;
    }
}