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

.page-game-reviews-top-5-fishing-games {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F;
    line-height: 1.6;
    font-size: 16px;
}

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

.page-game-reviews-top-5-fishing-games__hero {
    position: relative;
    background: linear-gradient(135deg, #0A192F 0%, #1a3459 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap-reverse;
    gap: 40px;
    text-align: center;
    overflow: hidden;
}

.page-game-reviews-top-5-fishing-games__hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    z-index: 1;
    text-align: left;
}

.page-game-reviews-top-5-fishing-games__title {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-top-5-fishing-games__subtitle {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-game-reviews-top-5-fishing-games__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
    z-index: 0;
}

.page-game-reviews-top-5-fishing-games__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

.page-game-reviews-top-5-fishing-games__hero-image:hover {
    transform: translateY(-5px);
}

.page-game-reviews-top-5-fishing-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-game-reviews-top-5-fishing-games__section:nth-of-type(odd) {
    background-color: #0A192F;
}

.page-game-reviews-top-5-fishing-games__section:nth-of-type(even) {
    background-color: #0D223F;
}

.page-game-reviews-top-5-fishing-games__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-top-5-fishing-games__section-description {
    font-size: 1.1em;
    color: #c0c0c0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-game-reviews-top-5-fishing-games__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    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;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-game-reviews-top-5-fishing-games__cta-button--secondary {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: none;
}

.page-game-reviews-top-5-fishing-games__cta-button--secondary:hover {
    background-color: #1a3459;
    color: #FFD700;
    transform: translateY(-3px);
}

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

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

.page-game-reviews-top-5-fishing-games__feature-item {
    background-color: #1a3459;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-game-reviews-top-5-fishing-games__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-game-reviews-top-5-fishing-games__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews-top-5-fishing-games__feature-item p {
    color: #e0e0e0;
}

.page-game-reviews-top-5-fishing-games__cta-wrapper {
    margin-top: 50px;
}

.page-game-reviews-top-5-fishing-games__criteria-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-game-reviews-top-5-fishing-games__criteria-list li {
    background-color: #1a3459;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1.1em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-top-5-fishing-games__criteria-list li strong {
    color: #FFD700;
}

.page-game-reviews-top-5-fishing-games__game-reviews {
    background-color: #0A192F;
}

.page-game-reviews-top-5-fishing-games__game-card {
    background-color: #1a3459;
    border-radius: 15px;
    margin-bottom: 50px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.page-game-reviews-top-5-fishing-games__game-card:last-of-type {
    margin-bottom: 0;
}

.page-game-reviews-top-5-fishing-games__game-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
}

.page-game-reviews-top-5-fishing-games__game-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    margin-right: 30px; /* Space between image and content */
}

.page-game-reviews-top-5-fishing-games__game-content {
    flex-grow: 1;
    min-width: 300px;
}

.page-game-reviews-top-5-fishing-games__game-content h4 {
    font-size: 1.6em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-game-reviews-top-5-fishing-games__game-content ul {
    list-style: disc;
    margin-left: 20px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-game-reviews-top-5-fishing-games__game-content ul li {
    margin-bottom: 8px;
}

.page-game-reviews-top-5-fishing-games__game-content p {
    color: #e0e0e0;
    margin-bottom: 15px;
}

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

.page-game-reviews-top-5-fishing-games__tip-item {
    background-color: #1a3459;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-game-reviews-top-5-fishing-games__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-game-reviews-top-5-fishing-games__tip-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews-top-5-fishing-games__tip-item p {
    color: #e0e0e0;
}

.page-game-reviews-top-5-fishing-games__cta-global {
    background-color: #0A192F;
    padding: 80px 0;
}

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

.page-game-reviews-top-5-fishing-games__faq {
    background-color: #0D223F;
}

.page-game-reviews-top-5-fishing-games__faq-item {
    background-color: #1a3459;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-game-reviews-top-5-fishing-games__faq-answer {
    color: #e0e0e0;
    font-size: 1em;
    display: none;
    margin-top: 15px;
}

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

.page-game-reviews-top-5-fishing-games__conclusion {
    background-color: #0A192F;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-game-reviews-top-5-fishing-games__cta-button--primary {
    background-color: #FFD700;
    color: #0A192F;
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-game-reviews-top-5-fishing-games__cta-button--primary:hover {
    background-color: #e6c200;
}

.page-game-reviews-top-5-fishing-games .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-reviews-top-5-fishing-games__hero {
        flex-direction: column;
        padding: 60px 0;
    }

    .page-game-reviews-top-5-fishing-games__hero-content {
        text-align: center;
    }

    .page-game-reviews-top-5-fishing-games__title {
        font-size: 2.5em;
    }

    .page-game-reviews-top-5-fishing-games__section-title {
        font-size: 2em;
    }

    .page-game-reviews-top-5-fishing-games__game-card {
        flex-direction: column;
        align-items: center;
        padding: 30px;
    }

    .page-game-reviews-top-5-fishing-games__game-image {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .page-game-reviews-top-5-fishing-games__game-content {
        text-align: center;
    }

    .page-game-reviews-top-5-fishing-games__game-content ul {
        text-align: left;
        margin-left: 0;
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-top-5-fishing-games__title {
        font-size: 2em;
    }

    .page-game-reviews-top-5-fishing-games__subtitle,
    .page-game-reviews-top-5-fishing-games__section-description {
        font-size: 1em;
    }

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

    .page-game-reviews-top-5-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-reviews-top-5-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-reviews-top-5-fishing-games__cta-button--primary {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-top-5-fishing-games__hero {
        padding: 40px 0;
    }

    .page-game-reviews-top-5-fishing-games__title {
        font-size: 1.8em;
    }

    .page-game-reviews-top-5-fishing-games__section-title {
        font-size: 1.5em;
    }

    .page-game-reviews-top-5-fishing-games__game-card,
    .page-game-reviews-top-5-fishing-games__feature-item,
    .page-game-reviews-top-5-fishing-games__tip-item,
    .page-game-reviews-top-5-fishing-games__faq-item {
        padding: 20px;
    }
}