/* style/game-reviews-fishing-games.css */

:root {
    --page-game-reviews-fishing-games-primary-color: #0A2463;
    --page-game-reviews-fishing-games-secondary-color: #FFD700;
    --page-game-reviews-fishing-games-text-light: #FFFFFF;
    --page-game-reviews-fishing-games-text-dark: #333333;
    --page-game-reviews-fishing-games-bg-light: #F8F9FA;
    --page-game-reviews-fishing-games-bg-dark: #1A3A7C;
    --page-game-reviews-fishing-games-accent-dark: #998100; /* Darker variant of secondary for text on gold */
    --page-game-reviews-fishing-games-border-color: rgba(255, 255, 255, 0.1);
}

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

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

.page-game-reviews-fishing-games__section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

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

.page-game-reviews-fishing-games__section--dark-bg .page-game-reviews-fishing-games__section-title,
.page-game-reviews-fishing-games__section--dark-bg .page-game-reviews-fishing-games__section-description,
.page-game-reviews-fishing-games__section--dark-bg .page-game-reviews-fishing-games__game-card-title a,
.page-game-reviews-fishing-games__section--dark-bg .page-game-reviews-fishing-games__game-card-description,
.page-game-reviews-fishing-games__section--dark-bg .page-game-reviews-fishing-games__game-card-features li,
.page-game-reviews-fishing-games__section--dark-bg .page-game-reviews-fishing-games__trust-title,
.page-game-reviews-fishing-games__section--dark-bg .page-game-reviews-fishing-games__trust-item p {
    color: var(--page-game-reviews-fishing-games-text-light);
}

.page-game-reviews-fishing-games__hero {
    background: linear-gradient(135deg, var(--page-game-reviews-fishing-games-primary-color) 0%, #1A3A7C 100%);
    color: var(--page-game-reviews-fishing-games-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.page-game-reviews-fishing-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--page-game-reviews-fishing-games-text-light);
}

.page-game-reviews-fishing-games__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.page-game-reviews-fishing-games__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: var(--page-game-reviews-fishing-games-text-dark);
}

.page-game-reviews-fishing-games__section--dark-bg .page-game-reviews-fishing-games__section-description {
    color: rgba(255, 255, 255, 0.8);
}

.page-game-reviews-fishing-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-game-reviews-fishing-games__btn--primary {
    background-color: var(--page-game-reviews-fishing-games-secondary-color);
    color: var(--page-game-reviews-fishing-games-primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.page-game-reviews-fishing-games__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-fishing-games__btn--secondary {
    background-color: transparent;
    color: var(--page-game-reviews-fishing-games-secondary-color);
    border: 2px solid var(--page-game-reviews-fishing-games-secondary-color);
}

.page-game-reviews-fishing-games__btn--secondary:hover {
    background-color: var(--page-game-reviews-fishing-games-secondary-color);
    color: var(--page-game-reviews-fishing-games-primary-color);
    transform: translateY(-2px);
}

.page-game-reviews-fishing-games__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

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

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

.page-game-reviews-fishing-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

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

.page-game-reviews-fishing-games__feature-item p {
    font-size: 1em;
    color: var(--page-game-reviews-fishing-games-text-dark);
}

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

.page-game-reviews-fishing-games__game-card {
    background-color: var(--page-game-reviews-fishing-games-bg-dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-reviews-fishing-games__game-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-game-reviews-fishing-games__game-card-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-game-reviews-fishing-games__game-card-title a {
    color: var(--page-game-reviews-fishing-games-secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-game-reviews-fishing-games__game-card-title a:hover {
    text-decoration: underline;
}

.page-game-reviews-fishing-games__game-card-description {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    padding: 0 20px;
    flex-grow: 1;
}

.page-game-reviews-fishing-games__game-card-features {
    list-style: none;
    padding: 0 20px 20px 20px;
    margin: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.7);
}

.page-game-reviews-fishing-games__game-card-features li::before {
    content: '✅';
    margin-right: 10px;
    color: var(--page-game-reviews-fishing-games-secondary-color);
}

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

.page-game-reviews-fishing-games__strategy-item {
    background-color: var(--page-game-reviews-fishing-games-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.page-game-reviews-fishing-games__strategy-item h3 {
    color: var(--page-game-reviews-fishing-games-primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-game-reviews-fishing-games__strategy-item p {
    color: var(--page-game-reviews-fishing-games-text-dark);
    font-size: 0.95em;
}

.page-game-reviews-fishing-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-fishing-games__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-game-reviews-fishing-games__section--cta-bg {
    background: linear-gradient(90deg, var(--page-game-reviews-fishing-games-primary-color) 0%, #1A3A7C 100%);
    color: var(--page-game-reviews-fishing-games-text-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-game-reviews-fishing-games__cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-game-reviews-fishing-games__cta-title {
    font-size: 2.8em;
    color: var(--page-game-reviews-fishing-games-secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-reviews-fishing-games__cta-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-game-reviews-fishing-games__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-game-reviews-fishing-games__image--bottom-right {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    opacity: 0.2;
    transform: rotate(15deg);
    filter: grayscale(100%);
    z-index: 1;
}

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

.page-game-reviews-fishing-games__trust-item {
    background-color: var(--page-game-reviews-fishing-games-bg-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-game-reviews-fishing-games-border-color);
}

.page-game-reviews-fishing-games__trust-title {
    font-size: 1.6em;
    color: var(--page-game-reviews-fishing-games-secondary-color);
    margin-bottom: 15px;
}

.page-game-reviews-fishing-games__trust-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
}

.page-game-reviews-fishing-games__faq-list {
    margin-top: 40px;
}

.page-game-reviews-fishing-games__faq-item {
    background-color: var(--page-game-reviews-fishing-games-text-light);
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-reviews-fishing-games__faq-question {
    font-size: 1.3em;
    color: var(--page-game-reviews-fishing-games-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-reviews-fishing-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: var(--page-game-reviews-fishing-games-secondary-color);
    transition: transform 0.3s ease;
}

.page-game-reviews-fishing-games__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-reviews-fishing-games__faq-answer {
    font-size: 1em;
    color: var(--page-game-reviews-fishing-games-text-dark);
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-game-reviews-fishing-games__faq-answer a {
    color: var(--page-game-reviews-fishing-games-primary-color);
    text-decoration: underline;
}

.page-game-reviews-fishing-games__faq-answer a:hover {
    color: var(--page-game-reviews-fishing-games-secondary-color);
}

.page-game-reviews-fishing-games__section--conclusion-bg {
    background: linear-gradient(135deg, var(--page-game-reviews-fishing-games-primary-color) 0%, #1A3A7C 100%);
    color: var(--page-game-reviews-fishing-games-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-game-reviews-fishing-games__conclusion-title {
    font-size: 3em;
    color: var(--page-game-reviews-fishing-games-secondary-color);
    margin-bottom: 25px;
    font-weight: bold;
}

.page-game-reviews-fishing-games__conclusion-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-reviews-fishing-games__hero-title {
        font-size: 2.5em;
    }
    .page-game-reviews-fishing-games__section-title {
        font-size: 2em;
    }
    .page-game-reviews-fishing-games__cta-title {
        font-size: 2.2em;
    }
    .page-game-reviews-fishing-games__conclusion-title {
        font-size: 2.5em;
    }
    .page-game-reviews-fishing-games__image--bottom-right {
        width: 200px;
        bottom: -30px;
        right: -30px;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-fishing-games__hero {
        padding: 80px 0;
    }
    .page-game-reviews-fishing-games__hero-title {
        font-size: 2em;
    }
    .page-game-reviews-fishing-games__hero-description {
        font-size: 1em;
    }
    .page-game-reviews-fishing-games__section {
        padding: 40px 0;
    }
    .page-game-reviews-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews-fishing-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews-fishing-games__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-game-reviews-fishing-games__cta-title {
        font-size: 1.8em;
    }
    .page-game-reviews-fishing-games__conclusion-title {
        font-size: 2em;
    }
    .page-game-reviews-fishing-games__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-game-reviews-fishing-games__image--bottom-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-fishing-games__hero-title {
        font-size: 1.8em;
    }
    .page-game-reviews-fishing-games__section-title,
    .page-game-reviews-fishing-games__cta-title,
    .page-game-reviews-fishing-games__conclusion-title {
        font-size: 1.5em;
    }
    .page-game-reviews-fishing-games__feature-title,
    .page-game-reviews-fishing-games__game-card-title,
    .page-game-reviews-fishing-games__strategy-title,
    .page-game-reviews-fishing-games__trust-title,
    .page-game-reviews-fishing-games__faq-question {
        font-size: 1.2em;
    }
    .page-game-reviews-fishing-games__btn {
        width: 100%;
        max-width: 250px;
    }
}