/* style/game-reviews-789b-fishing-games-review.css */
.page-game-reviews-789b-fishing-games-review {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-game-reviews-789b-fishing-games-review__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-game-reviews-789b-fishing-games-review__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent for main title */
    line-height: 1.2;
    font-weight: bold;
}

.page-game-reviews-789b-fishing-games-review__subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #B0B0B0;
}

.page-game-reviews-789b-fishing-games-review__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold for CTA buttons */
    color: #0A192F; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-reviews-789b-fishing-games-review__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-game-reviews-789b-fishing-games-review__cta-button--secondary {
    background-color: #0F284F; /* Darker blue for secondary CTA */
    color: #FFD700; /* Gold text on dark blue */
    border: 2px solid #FFD700;
}

.page-game-reviews-789b-fishing-games-review__cta-button--secondary:hover {
    background-color: #1a3a60;
    color: #FFD700;
}

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

.page-game-reviews-789b-fishing-games-review__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-reviews-789b-fishing-games-review__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-game-reviews-789b-fishing-games-review__sub-section-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-section titles */
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-game-reviews-789b-fishing-games-review__list,
.page-game-reviews-789b-fishing-games-review__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #C0C0C0;
}

.page-game-reviews-789b-fishing-games-review__ordered-list {
    list-style-type: decimal;
}

.page-game-reviews-789b-fishing-games-review__list li,
.page-game-reviews-789b-fishing-games-review__ordered-list li {
    margin-bottom: 10px;
}

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

.page-game-reviews-789b-fishing-games-review__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid #FFD700;
}

.page-game-reviews-789b-fishing-games-review__image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #A0A0A0;
    font-size: 0.95em;
}

.page-game-reviews-789b-fishing-games-review__game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-789b-fishing-games-review__game-card {
    background-color: #0F284F; /* Darker blue for card background */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #FFD700;
}

.page-game-reviews-789b-fishing-games-review__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-game-reviews-789b-fishing-games-review__card-image {
    max-width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #FFD700;
}

.page-game-reviews-789b-fishing-games-review__card-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
}

.page-game-reviews-789b-fishing-games-review__card-description {
    font-size: 0.95em;
    color: #C0C0C0;
    margin-bottom: 25px;
}

.page-game-reviews-789b-fishing-games-review__card-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-game-reviews-789b-fishing-games-review__card-button:hover {
    background-color: #e6c200;
}

.page-game-reviews-789b-fishing-games-review__call-to-action-text {
    font-size: 1.2em;
    text-align: center;
    margin: 40px 0;
    color: #FFD700;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-game-reviews-789b-fishing-games-review__main-title {
        font-size: 2.5em;
    }
    .page-game-reviews-789b-fishing-games-review__subtitle {
        font-size: 1.1em;
    }
    .page-game-reviews-789b-fishing-games-review__section-title {
        font-size: 2em;
    }
    .page-game-reviews-789b-fishing-games-review__sub-section-title {
        font-size: 1.5em;
    }
    .page-game-reviews-789b-fishing-games-review__game-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-789b-fishing-games-review__main-title {
        font-size: 2em;
    }
    .page-game-reviews-789b-fishing-games-review__subtitle {
        font-size: 1em;
    }
    .page-game-reviews-789b-fishing-games-review__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews-789b-fishing-games-review__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews-789b-fishing-games-review__sub-section-title {
        font-size: 1.3em;
    }
    .page-game-reviews-789b-fishing-games-review__list,
    .page-game-reviews-789b-fishing-games-review__ordered-list {
        margin-left: 20px;
    }
}