/**
 * Single Game Page Styles
 *
 * Styles for individual game pages
 *
 * @package FFOA_Custom
 * @since 1.2.0
 */

/* ============================================================
   SINGLE GAME PAGE BACKGROUND
   ============================================================ */

.single-game-page {
    background-color: #1a2340 !important;
    background-image: url('../images/Gemini_Generated_Image_m9ub24m9ub24m9ub.png') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    min-height: 100vh;
    padding: 2rem 0;
}

/* ============================================================
   GAME CONTAINER
   ============================================================ */

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.game-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

/* ============================================================
   GAME FOOTER
   ============================================================ */

.game-footer {
    text-align: center;
    padding: 1.5rem 0;
}

.back-to-games {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #222E51;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.back-to-games:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #222E51;
    text-decoration: none;
}

.back-to-games span {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.back-to-games:hover span {
    transform: translateX(-4px);
}

/* ============================================================
   GAME NOT FOUND
   ============================================================ */

.game-not-found {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.game-not-found h1 {
    font-size: 2.25rem;
    color: #222E51;
    margin-bottom: 1rem;
}

.game-not-found p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.game-not-found .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #C2B97F;
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(194, 185, 127, 0.3);
}

.game-not-found .button:hover {
    background: #a99b65;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(194, 185, 127, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* ============================================================
   MOBILE OPTIMIZATIONS
   ============================================================ */

@media (max-width: 767px) {
    .single-game-page {
        padding: 1.5rem 0;
    }

    .game-wrapper {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .game-not-found {
        padding: 2rem 1.5rem;
    }

    .game-not-found h1 {
        font-size: 1.75rem;
    }

    .game-not-found p {
        font-size: 1rem;
    }
}
