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

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

.page-games-types-fishing-games__hero-section {
    background: linear-gradient(135deg, #0047AB, #002880);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-types-fishing-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:fishing_game,underwater_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

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

.page-games-types-fishing-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.page-games-types-fishing-games__btn--primary {
    background-color: #FFD700;
    color: #0047AB;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-games-types-fishing-games__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-games-types-fishing-games__btn--secondary {
    background-color: #0047AB;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-games-types-fishing-games__btn--secondary:hover {
    background-color: #003a8d;
    transform: translateY(-3px);
}

.page-games-types-fishing-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-games-types-fishing-games__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0047AB;
    font-weight: bold;
}

.page-games-types-fishing-games__section-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #555555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-types-fishing-games__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-games-types-fishing-games__content-wrapper:nth-child(even) {
    flex-direction: row-reverse;
}

.page-games-types-fishing-games__text-content {
    flex: 1;
    font-size: 1.1em;
    color: #444444;
}

.page-games-types-fishing-games__text-content p {
    margin-bottom: 15px;
}

.page-games-types-fishing-games__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-games-types-fishing-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-games-types-fishing-games__image-full-width {
    margin-top: 50px;
}

.page-games-types-fishing-games__image-center {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.page-games-types-fishing-games__features {
    background-color: #e0eaf7; /* Lighter shade of primary for contrast */
}

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

.page-games-types-fishing-games__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-types-fishing-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-games-types-fishing-games__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-games-types-fishing-games__feature-title {
    font-size: 1.5em;
    color: #0047AB;
    margin-bottom: 15px;
}

.page-games-types-fishing-games__feature-item p {
    font-size: 1em;
    color: #666666;
}

.page-games-types-fishing-games__guide-step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.page-games-types-fishing-games__guide-step-title {
    font-size: 1.6em;
    color: #0047AB;
    margin-bottom: 15px;
}

.page-games-types-fishing-games__guide-step p {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 20px;
}

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

.page-games-types-fishing-games__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 6px;
    background-color: #FFD700;
    color: #0047AB;
    border: none;
}

.page-games-types-fishing-games__btn--small:hover {
    background-color: #e6c200;
}

.page-games-types-fishing-games__fish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-games-types-fishing-games__fish-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    text-align: left;
    border-left: 5px solid #FFD700;
}

.page-games-types-fishing-games__fish-category {
    font-size: 1.4em;
    color: #0047AB;
    margin-bottom: 10px;
}

.page-games-types-fishing-games__fish-item p {
    font-size: 1em;
    color: #555555;
    margin-bottom: 8px;
}

.page-games-types-fishing-games__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-games-types-fishing-games__strategy-list li {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 5px solid #0047AB;
    transition: transform 0.3s ease;
}

.page-games-types-fishing-games__strategy-list li:hover {
    transform: translateY(-5px);
}

.page-games-types-fishing-games__strategy-list h3 {
    font-size: 1.5em;
    color: #0047AB;
    margin-bottom: 10px;
}

.page-games-types-fishing-games__strategy-list p {
    font-size: 1em;
    color: #666666;
}

.page-games-types-fishing-games__download {
    background: linear-gradient(90deg, #0047AB, #002880);
    color: #ffffff;
}

.page-games-types-fishing-games__download .page-games-types-fishing-games__section-title {
    color: #FFD700;
}

.page-games-types-fishing-games__download .page-games-types-fishing-games__section-subtitle {
    color: #e0e0e0;
}

.page-games-types-fishing-games__download-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-games-types-fishing-games__download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-games-types-fishing-games__btn--download {
    background-color: #FFD700;
    color: #0047AB;
    border: none;
    padding: 12px 25px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-games-types-fishing-games__btn--download:hover {
    background-color: #e6c200;
}

.page-games-types-fishing-games__btn-icon {
    width: 24px;
    height: 24px;
}

.page-games-types-fishing-games__qr-code {
    margin-top: 40px;
    text-align: center;
}

.page-games-types-fishing-games__qr-code .page-games-types-fishing-games__image {
    width: 180px;
    height: 180px;
    border: 5px solid #FFD700;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-games-types-fishing-games__qr-code p {
    margin-top: 15px;
    font-size: 1.1em;
    color: #ffffff;
}

.page-games-types-fishing-games__faq-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
    text-align: left;
}

.page-games-types-fishing-games__faq-question {
    font-size: 1.3em;
    color: #0047AB;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-games-types-fishing-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-games-types-fishing-games__faq-answer {
    font-size: 1em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.page-games-types-fishing-games__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    margin-top: 10px;
}

.page-games-types-fishing-games__final-cta {
    background-color: #0047AB;
    color: #ffffff;
    padding: 80px 0;
}

.page-games-types-fishing-games__final-cta .page-games-types-fishing-games__section-title {
    color: #FFD700;
}

.page-games-types-fishing-games__final-cta .page-games-types-fishing-games__section-subtitle {
    color: #e0e0e0;
}

.page-games-types-fishing-games__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
    margin-top: 30px;
}

.page-games-types-fishing-games__small-text {
    font-size: 0.9em;
    margin-top: 20px;
    color: #cccccc;
}

.page-games-types-fishing-games__cta-bottom {
    margin-top: 50px;
}

.text-highlight {
    color: #0047AB;
    font-weight: bold;
}

.bg-accent-light {
    background-color: #e0eaf7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games-types-fishing-games__hero-title {
        font-size: 2.5em;
    }

    .page-games-types-fishing-games__section-title {
        font-size: 2em;
    }

    .page-games-types-fishing-games__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-games-types-fishing-games__content-wrapper:nth-child(even) {
        flex-direction: column;
    }

    .page-games-types-fishing-games__image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-games-types-fishing-games__hero-section {
        padding: 80px 0;
    }

    .page-games-types-fishing-games__hero-title {
        font-size: 2em;
    }

    .page-games-types-fishing-games__hero-description {
        font-size: 1em;
    }

    .page-games-types-fishing-games__section {
        padding: 40px 0;
    }

    .page-games-types-fishing-games__section-title {
        font-size: 1.8em;
    }

    .page-games-types-fishing-games__feature-grid, 
    .page-games-types-fishing-games__content-grid, 
    .page-games-types-fishing-games__fish-grid, 
    .page-games-types-fishing-games__strategy-list {
        grid-template-columns: 1fr;
    }

    .page-games-types-fishing-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-games-types-fishing-games__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-games-types-fishing-games__download-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-games-types-fishing-games__btn--download {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-games-types-fishing-games__hero-title {
        font-size: 1.8em;
    }

    .page-games-types-fishing-games__section-title {
        font-size: 1.5em;
    }

    .page-games-types-fishing-games__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-games-types-fishing-games__qr-code .page-games-types-fishing-games__image {
        width: 150px;
        height: 150px;
    }
}