/* style/game-reviews-fishing-games.css */
.page-game-reviews-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-game-reviews-fishing-games__hero-section {
    background: linear-gradient(135deg, #003366 0%, #FFCC00 100%);
    color: #ffffff;
    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:ocean_pattern,abstract,blue_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.page-game-reviews-fishing-games__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    position: relative;
    z-index: 1;
}

.page-game-reviews-fishing-games__cta-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 30px;
    border-radius: 50px;
    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: 2px solid #FFCC00;
}

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

.page-game-reviews-fishing-games__cta-button--small {
    padding: 10px 25px;
    font-size: 1em;
}

.page-game-reviews-fishing-games__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-game-reviews-fishing-games__bg-light {
    background-color: #f2f7fc;
}

.page-game-reviews-fishing-games__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-game-reviews-fishing-games__intro-text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.page-game-reviews-fishing-games__text-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
}

.page-game-reviews-fishing-games__text-block p {
    flex: 1;
    min-width: 300px;
    font-size: 1.05em;
    color: #444;
}

.page-game-reviews-fishing-games__image {
    flex: 0 0 45%;
    max-width: 45%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-game-reviews-fishing-games__image:hover {
    transform: scale(1.02);
}

.page-game-reviews-fishing-games__image--left {
    order: -1;
}

.page-game-reviews-fishing-games__image--right {
    order: 1;
}

@media (max-width: 768px) {
    .page-game-reviews-fishing-games__text-block {
        flex-direction: column;
    }
    .page-game-reviews-fishing-games__image {
        max-width: 90%;
        order: 0 !important;
    }
}

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

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

.page-game-reviews-fishing-games__game-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-game-reviews-fishing-games__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-reviews-fishing-games__game-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 10px;
}

.page-game-reviews-fishing-games__game-description {
    font-size: 0.95em;
    color: #666;
}

.page-game-reviews-fishing-games__text-center {
    text-align: center;
    margin-top: 40px;
}

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

.page-game-reviews-fishing-games__strategy-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease;
}

.page-game-reviews-fishing-games__strategy-item:hover {
    border-color: #FFCC00;
}

.page-game-reviews-fishing-games__strategy-title {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.page-game-reviews-fishing-games__strategy-title::before {
    content: '✔️'; /* Or a stylish icon */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #FFCC00;
    font-size: 1.1em;
}

.page-game-reviews-fishing-games__strategy-item p {
    font-size: 1em;
    color: #555;
}

.page-game-reviews-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-game-reviews-fishing-games__promo-list li {
    background-color: #eaf3ff;
    border-left: 5px solid #003366;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #222;
}

.page-game-reviews-fishing-games__promo-list li strong {
    color: #003366;
}

.page-game-reviews-fishing-games__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 30px;
}

.page-game-reviews-fishing-games__step-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 45px;
    position: relative;
    font-size: 1.1em;
    color: #333;
}

.page-game-reviews-fishing-games__step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #003366;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-fishing-games__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-game-reviews-fishing-games__faq-question {
    font-size: 1.25em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-reviews-fishing-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

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

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

.page-game-reviews-fishing-games__faq-answer.active {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-reviews-fishing-games__main-title {
        font-size: 2.5em;
    }
    .page-game-reviews-fishing-games__section-title {
        font-size: 2em;
    }
    .page-game-reviews-fishing-games__game-list,
    .page-game-reviews-fishing-games__strategy-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-reviews-fishing-games__hero-section {
        padding: 60px 0;
    }
    .page-game-reviews-fishing-games__main-title {
        font-size: 2em;
    }
    .page-game-reviews-fishing-games__subtitle {
        font-size: 1.1em;
    }
    .page-game-reviews-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-reviews-fishing-games__content-section {
        padding: 40px 0;
    }
    .page-game-reviews-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-game-reviews-fishing-games__intro-text {
        font-size: 1em;
    }
    .page-game-reviews-fishing-games__text-block p {
        font-size: 1em;
    }
    .page-game-reviews-fishing-games__game-image {
        height: 150px;
    }
    .page-game-reviews-fishing-games__game-title {
        font-size: 1.3em;
    }
    .page-game-reviews-fishing-games__strategy-title {
        font-size: 1.2em;
    }
    .page-game-reviews-fishing-games__step-list li,
    .page-game-reviews-fishing-games__promo-list li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-fishing-games__main-title {
        font-size: 1.8em;
    }
    .page-game-reviews-fishing-games__section-title {
        font-size: 1.6em;
    }
    .page-game-reviews-fishing-games__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-game-reviews-fishing-games__game-list,
    .page-game-reviews-fishing-games__strategy-grid {
        grid-template-columns: 1fr;
    }
    .page-game-reviews-fishing-games__faq-question {
        font-size: 1.1em;
    }
}