/* GAME-SPECIFIC STYLES: 2048.css */

/* General Container Styling (Kept from original) */
.game-wrapper {
    width: 100%;
    max-width: 600px; /* Increased max-width for better gallery display */
    margin: 0 auto;
    padding: 15px;
}

.game-wrapper h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.game-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px auto; /* Increased bottom margin */
    line-height: 1.6;
    font-size: 16px;
    color: #666;
}

/* NEW: Styles for the Game Stills Gallery */
.game-stills-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates a 2x2 grid */
    gap: 15px;
    margin-bottom: 40px;
}

.game-stills-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-stills-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* NEW: Styles for the Download Section */
.download-section {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #eee;
}

.download-text {
    font-size: 1.1em;
    color: #333;
    margin: 0 0 20px 0;
}

.play-store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #007BFF; /* A nice, vibrant blue */
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.play-store-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.play-store-btn .fab {
    font-size: 1.4em;
    margin-right: 12px;
}