/* style/beginner-guide-game-recommendations.css */
.page-beginner-guide-game-recommendations {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-beginner-guide-game-recommendations__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-beginner-guide-game-recommendations__hero {
    background: linear-gradient(135deg, #0A2342, #1A3A6A);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-game-recommendations__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract pattern,geometric,dark blue,gold accent]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-beginner-guide-game-recommendations__hero .page-beginner-guide-game-recommendations__container {
    position: relative;
    z-index: 1;
}

.page-beginner-guide-game-recommendations__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-game-recommendations__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-beginner-guide-game-recommendations__section {
    padding: 60px 0;
    background-color: #f8f8f8;
    color: #0A2342;
}

.page-beginner-guide-game-recommendations__section--dark {
    background-color: #0A2342;
    color: #E0E0E0;
}

.page-beginner-guide-game-recommendations__section--dark .page-beginner-guide-game-recommendations__section-title,
.page-beginner-guide-game-recommendations__section--dark .page-beginner-guide-game-recommendations__step-title,
.page-beginner-guide-game-recommendations__section--dark .page-beginner-guide-game-recommendations__promotion-title {
    color: #FFD700;
}

.page-beginner-guide-game-recommendations__section-title {
    font-size: 2.5em;
    color: #0A2342;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-beginner-guide-game-recommendations__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-beginner-guide-game-recommendations__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: inherit;
}

.page-beginner-guide-game-recommendations__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.page-beginner-guide-game-recommendations__content-grid > div {
    flex: 1;
    min-width: 300px;
}

.page-beginner-guide-game-recommendations__image-wrapper {
    flex: 1; /* Make image wrapper also flexible */
    text-align: center;
}

.page-beginner-guide-game-recommendations__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-game-recommendations__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: inherit;
}

.page-beginner-guide-game-recommendations__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-beginner-guide-game-recommendations__step-card {
    background-color: #1A3A6A;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-beginner-guide-game-recommendations__step-card:hover {
    transform: translateY(-5px);
    background-color: #2A4B7D;
}

.page-beginner-guide-game-recommendations__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-beginner-guide-game-recommendations__step-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-beginner-guide-game-recommendations__step-card p {
    color: #D0D0D0;
    margin-bottom: 20px;
}

.page-beginner-guide-game-recommendations__game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-beginner-guide-game-recommendations__game-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-game-recommendations__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-game-recommendations__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-beginner-guide-game-recommendations__game-title {
    font-size: 1.8em;
    color: #0A2342;
    margin: 20px 15px 10px;
}

.page-beginner-guide-game-recommendations__game-card p {
    color: #555;
    padding: 0 15px 20px;
    font-size: 0.95em;
}

.page-beginner-guide-game-recommendations__list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
}

.page-beginner-guide-game-recommendations__list li {
    background-color: #1A3A6A;
    color: #fff;
    padding: 18px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    font-size: 1.1em;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-beginner-guide-game-recommendations__list li:hover {
    background-color: #2A4B7D;
}

.page-beginner-guide-game-recommendations__list li strong {
    color: #FFD700;
    margin-right: 10px;
}

.page-beginner-guide-game-recommendations__list li::before {
    content: '✅';
    font-size: 1.2em;
    margin-right: 15px;
    color: #FFD700;
}

.page-beginner-guide-game-recommendations__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #1A3A6A;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.page-beginner-guide-game-recommendations__cta-image {
    max-width: 150px;
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.page-beginner-guide-game-recommendations__cta-wrapper p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #FFD700;
    font-weight: bold;
}

.page-beginner-guide-game-recommendations__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-beginner-guide-game-recommendations__promotion-card {
    background-color: #1A3A6A;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-beginner-guide-game-recommendations__promotion-card:hover {
    transform: translateY(-5px);
    background-color: #2A4B7D;
}

.page-beginner-guide-game-recommendations__promotion-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-beginner-guide-game-recommendations__promotion-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-beginner-guide-game-recommendations__promotion-card p {
    color: #D0D0D0;
    font-size: 1em;
}

.page-beginner-guide-game-recommendations__promotion-callout {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    margin-top: 50px;
}

/* Buttons */
.page-beginner-guide-game-recommendations__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-beginner-guide-game-recommendations__btn--primary {
    background-color: #FFD700;
    color: #0A2342;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-beginner-guide-game-recommendations__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-beginner-guide-game-recommendations__btn--secondary {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-game-recommendations__btn--secondary:hover {
    background-color: #1A3A6A;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-game-recommendations__btn--ghost {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 20px;
    font-size: 1em;
}

.page-beginner-guide-game-recommendations__btn--ghost:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-2px);
}

.page-beginner-guide-game-recommendations__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #DC3545;
    color: #fff;
    border-radius: 5px;
    margin-top: 15px;
}

.page-beginner-guide-game-recommendations__btn--small:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide-game-recommendations__title {
        font-size: 2.5em;
    }
    .page-beginner-guide-game-recommendations__subtitle {
        font-size: 1.1em;
    }
    .page-beginner-guide-game-recommendations__section-title {
        font-size: 2em;
    }
    .page-beginner-guide-game-recommendations__content-grid {
        flex-direction: column;
    }
    .page-beginner-guide-game-recommendations__image-wrapper {
        order: -1; /* Image above text on small screens */
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-game-recommendations__hero {
        padding: 80px 0;
    }
    .page-beginner-guide-game-recommendations__title {
        font-size: 2em;
    }
    .page-beginner-guide-game-recommendations__subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-beginner-guide-game-recommendations__section {
        padding: 40px 0;
    }
    .page-beginner-guide-game-recommendations__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-beginner-guide-game-recommendations__list li {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-beginner-guide-game-recommendations__cta-wrapper p {
        font-size: 1.1em;
    }
    .page-beginner-guide-game-recommendations__step-card, .page-beginner-guide-game-recommendations__game-card, .page-beginner-guide-game-recommendations__promotion-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-game-recommendations__title {
        font-size: 1.8em;
    }
    .page-beginner-guide-game-recommendations__subtitle {
        font-size: 0.9em;
    }
    .page-beginner-guide-game-recommendations__section-title {
        font-size: 1.5em;
    }
    .page-beginner-guide-game-recommendations__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-beginner-guide-game-recommendations__btn--small {
        padding: 8px 15px;
        font-size: 0.85em;
    }
    .page-beginner-guide-game-recommendations__list li {
        padding: 12px 15px;
    }
    .page-beginner-guide-game-recommendations__list li::before {
        margin-right: 10px;
    }
    .page-beginner-guide-game-recommendations__step-icon {
        width: 60px;
        height: 60px;
    }
    .page-beginner-guide-game-recommendations__game-image {
        height: 150px;
    }
}