/* style/game-reviews-fishing-game-review.css */
.page-game-reviews-fishing-game-review {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light text for readability on dark background */
    background-color: #051433; /* Darker variant of primary color */
    line-height: 1.6;
}

.page-game-reviews-fishing-game-review__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-reviews-fishing-game-review__hero-section {
    background: linear-gradient(135deg, #0A246A 0%, #0A246A 50%, #F39C12 100%); /* Primary to secondary gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF; /* White text on hero section for contrast */
}

.page-game-reviews-fishing-game-review__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF; /* White for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-fishing-game-review__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-reviews-fishing-game-review__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-game-reviews-fishing-game-review__btn--primary {
    background-color: #F39C12; /* Secondary color */
    color: #0A246A; /* Primary color for text */
    border-color: #F39C12;
}

.page-game-reviews-fishing-game-review__btn--primary:hover {
    background-color: #e08b0f; /* Slightly darker secondary */
    border-color: #e08b0f;
    transform: translateY(-3px);
}

.page-game-reviews-fishing-game-review__btn--secondary {
    background-color: transparent;
    color: #F39C12; /* Secondary color for text */
    border-color: #F39C12;
    margin-left: 15px;
}

.page-game-reviews-fishing-game-review__btn--secondary:hover {
    background-color: #F39C12;
    color: #0A246A; /* Primary color for text on hover */
    transform: translateY(-3px);
}

.page-game-reviews-fishing-game-review__content-section {
    padding: 60px 0;
}

.page-game-reviews-fishing-game-review__article {
    background-color: #0A246A; /* Primary color for article background */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-fishing-game-review__section-title {
    font-size: 2.5em;
    color: #F39C12; /* Secondary color for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.page-game-reviews-fishing-game-review__sub-section-title {
    font-size: 1.8em;
    color: #B0C4DE; /* Lighter variant of primary for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-game-reviews-fishing-game-review p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0; /* Light text */
}

.page-game-reviews-fishing-game-review__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0; /* Light text */
}

.page-game-reviews-fishing-game-review__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-game-reviews-fishing-game-review__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.page-game-reviews-fishing-game-review__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-fishing-game-review__image-caption {
    font-style: italic;
    margin-top: 15px;
    color: #B0C4DE; /* Lighter variant of primary */
    font-size: 0.95em;
}

.page-game-reviews-fishing-game-review__cta-buttons {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(243, 156, 18, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-reviews-fishing-game-review__main-title {
        font-size: 2.5em;
    }

    .page-game-reviews-fishing-game-review__subtitle {
        font-size: 1em;
    }

    .page-game-reviews-fishing-game-review__section-title {
        font-size: 2em;
    }

    .page-game-reviews-fishing-game-review__sub-section-title {
        font-size: 1.5em;
    }

    .page-game-reviews-fishing-game-review__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 10px 0;
    }

    .page-game-reviews-fishing-game-review__btn--secondary {
        margin-left: 0;
    }

    .page-game-reviews-fishing-game-review__hero-section {
        padding: 80px 0;
    }

    .page-game-reviews-fishing-game-review__article {
        padding: 25px;
    }

    .page-game-reviews-fishing-game-review__cta-buttons .page-game-reviews-fishing-game-review__btn {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-fishing-game-review__main-title {
        font-size: 2em;
    }

    .page-game-reviews-fishing-game-review__section-title {
        font-size: 1.8em;
    }

    .page-game-reviews-fishing-game-review__sub-section-title {
        font-size: 1.3em;
    }

    .page-game-reviews-fishing-game-review p,
    .page-game-reviews-fishing-game-review__list li {
        font-size: 0.95em;
    }
}