/* style/game-reviews-fishing-games.css */
:root {
    --primary-color: #1A2B5B;
    --secondary-color: #FFD700;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --background-light: #F8F8F8;
    --background-dark: #1A2B5B;
    --button-hover-dark: #0F1E3B;
    --button-hover-light: #E5C100;
}

.page-game-reviews-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

.page-game-reviews-fishing-games__hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3A4F8C 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-reviews-fishing-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_ocean_pattern,dark_blue,gold_accents]') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

.page-game-reviews-fishing-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-game-reviews-fishing-games__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-game-reviews-fishing-games__cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.page-game-reviews-fishing-games__cta-button:hover {
    background-color: var(--button-hover-light);
    transform: translateY(-3px);
}

.page-game-reviews-fishing-games__secondary-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--secondary-color);
    margin-top: 20px;
    cursor: pointer;
}

.page-game-reviews-fishing-games__secondary-cta-button:hover {
    background-color: var(--button-hover-dark);
    transform: translateY(-2px);
}

.page-game-reviews-fishing-games__cta-button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-game-reviews-fishing-games__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-game-reviews-fishing-games__content-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-game-reviews-fishing-games__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-game-reviews-fishing-games__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-reviews-fishing-games__section-title--light {
    color: var(--secondary-color);
}

.page-game-reviews-fishing-games__sub-section-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-game-reviews-fishing-games__text--light {
    color: var(--text-light);
}

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

.page-game-reviews-fishing-games__feature-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-game-reviews-fishing-games__feature-item:hover {
    transform: translateY(-5px);
}

.page-game-reviews-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-game-reviews-fishing-games__feature-heading {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-game-reviews-fishing-games__criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-game-reviews-fishing-games__criteria-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-game-reviews-fishing-games__criteria-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-game-reviews-fishing-games__criteria-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Gold glow */
}

.page-game-reviews-fishing-games__criteria-heading {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-game-reviews-fishing-games__criteria-heading--light {
    color: var(--secondary-color);
}

.page-game-reviews-fishing-games__game-review-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page-game-reviews-fishing-games__game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-game-reviews-fishing-games__game-details {
    padding: 30px;
}

.page-game-reviews-fishing-games__game-title {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-reviews-fishing-games__game-details p {
    margin-bottom: 15px;
}

.page-game-reviews-fishing-games__game-details strong {
    color: var(--primary-color);
}

.page-game-reviews-fishing-games__tips-list,
.page-game-reviews-fishing-games__responsibility-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-game-reviews-fishing-games__tips-list li,
.page-game-reviews-fishing-games__responsibility-list li {
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 5px solid var(--secondary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    line-height: 1.8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-fishing-games__tips-list li strong,
.page-game-reviews-fishing-games__responsibility-list li strong {
    color: var(--secondary-color);
}

.page-game-reviews-fishing-games__numbered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-top: 20px;
}

.page-game-reviews-fishing-games__numbered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-game-reviews-fishing-games__illustration-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-game-reviews-fishing-games__game-review-card {
        flex-direction: row;
    }

    .page-game-reviews-fishing-games__game-image {
        width: 40%;
        height: auto;
        border-bottom: none;
        border-right: 1px solid #eee;
    }

    .page-game-reviews-fishing-games__game-details {
        width: 60%;
    }
}

@media (max-width: 767px) {
    .page-game-reviews-fishing-games__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-game-reviews-fishing-games__sub-section-title {
        font-size: 1.4em;
    }

    .page-game-reviews-fishing-games__cta-button,
    .page-game-reviews-fishing-games__secondary-cta-button {
        padding: 12px 20px;
        font-size: 0.9em;
    }

    .page-game-reviews-fishing-games__feature-item,
    .page-game-reviews-fishing-games__criteria-item {
        padding: 20px;
    }

    .page-game-reviews-fishing-games__feature-icon,
    .page-game-reviews-fishing-games__criteria-icon {
        width: 60px;
        height: 60px;
    }

    .page-game-reviews-fishing-games__game-title {
        font-size: 1.6em;
    }
}