/* style/fishing-games-types.css */
.page-fishing-games-types {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #000000; /* Body background from shared.css */
}

.page-fishing-games-types__hero-section {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.page-fishing-games-types__hero-container {
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
}

.page-fishing-games-types__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games-types__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-fishing-games-types__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-fishing-games-types__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

.page-fishing-games-types__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-fishing-games-types__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.page-fishing-games-types__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

.page-fishing-games-types__dark-bg {
    background-color: #017439;
    color: #ffffff;
}

.page-fishing-games-types__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.page-fishing-games-types__game-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.page-fishing-games-types__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-types__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-fishing-games-types__card-title {
    font-size: 1.5em;
    margin: 15px 15px 10px;
    color: #ffffff;
}

.page-fishing-games-types__card-link {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

.page-fishing-games-types__card-link:hover {
    color: #FFFF00;
}

.page-fishing-games-types__card-description {
    font-size: 0.95em;
    padding: 0 15px 15px;
    color: #e0e0e0;
}

.page-fishing-games-types__cta-block {
    text-align: center;
    margin-top: 50px;
}

.page-fishing-games-types__guide-list,
.page-fishing-games-types__strategy-list,
.page-fishing-games-types__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games-types__guide-list li,
.page-fishing-games-types__strategy-list li,
.page-fishing-games-types__benefits-list li {
    background-color: rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games-types__guide-list li strong,
.page-fishing-games-types__strategy-list li strong,
.page-fishing-games-types__benefits-list li strong {
    color: #017439;
}

.page-fishing-games-types__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-types__faq-list {
    margin-top: 40px;
}

.page-fishing-games-types__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.page-fishing-games-types__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.page-fishing-games-types__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-fishing-games-types__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-fishing-games-types__faq-item.active .page-fishing-games-types__faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games-types__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #e0e0e0;
}

.page-fishing-games-types__faq-item.active .page-fishing-games-types__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 15px 20px;
}

.page-fishing-games-types__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
}

.page-fishing-games-types__faq-answer a {
    color: #FFFF00;
    text-decoration: underline;
}

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

.page-fishing-games-types__btn-primary,
.page-fishing-games-types__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.page-fishing-games-types__btn-primary {
    background-color: #C30808;
    color: #FFFF00;
    border-color: #C30808;
}

.page-fishing-games-types__btn-primary:hover {
    background-color: #e00b0b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-types__btn-secondary {
    background-color: #FFFFFF;
    color: #017439;
    border-color: #017439;
}

.page-fishing-games-types__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #005f2e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-fishing-games-types__hero-title {
        font-size: 3em;
    }
    .page-fishing-games-types__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-types__hero-section {
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-fishing-games-types__hero-title {
        font-size: 2.2em;
    }
    .page-fishing-games-types__hero-description {
        font-size: 1em;
    }
    .page-fishing-games-types__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games-types__btn-primary,
    .page-fishing-games-types__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games-types__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-fishing-games-types__content-area {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-fishing-games-types__section-title {
        font-size: 1.8em;
    }
    .page-fishing-games-types__game-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games-types__text-block,
    .page-fishing-games-types__guide-list li,
    .page-fishing-games-types__strategy-list li,
    .page-fishing-games-types__benefits-list li,
    .page-fishing-games-types__card-description,
    .page-fishing-games-types__faq-answer p {
        font-size: 1em;
    }
    .page-fishing-games-types__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }

    /* Image responsiveness */
    .page-fishing-games-types img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games-types__section,
    .page-fishing-games-types__card,
    .page-fishing-games-types__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games-types__video-section {
        padding-top: var(--header-offset, 120px) !important; /* Consistent with shared */
    }
}

@media (max-width: 480px) {
    .page-fishing-games-types__hero-title {
        font-size: 1.8em;
    }
    .page-fishing-games-types__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games-types__faq-question {
        font-size: 1em;
    }
}