/* style/fishing-games.css */

:root {
    --fishing-games-bg-color: #08160F;
    --fishing-games-card-bg-color: #11271B;
    --fishing-games-text-main-color: #F2FFF6;
    --fishing-games-text-secondary-color: #A7D9B8;
    --fishing-games-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --fishing-games-border-color: #2E7A4E;
    --fishing-games-glow-color: #57E38D;
    --fishing-games-gold-color: #F2C14E;
    --fishing-games-divider-color: #1E3A2A;
    --fishing-games-deep-green-color: #0A4B2C;
}

.page-fishing-games {
    background-color: var(--fishing-games-bg-color);
    color: var(--fishing-games-text-main-color);
    font-family: Arial, sans-serif;
}

.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles --header-offset */
    overflow: hidden;
    background-color: var(--fishing-games-bg-color);
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-content {
    width: 100%;
    max-width: 900px;
    z-index: 1;
    color: var(--fishing-games-text-main-color);
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--fishing-games-gold-color);
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--fishing-games-text-secondary-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.page-fishing-games__cta-buttons--center {
    margin-top: 30px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
}

.page-fishing-games__btn-primary {
    background: var(--fishing-games-btn-gradient);
    color: var(--fishing-games-text-main-color);
    border: 2px solid var(--fishing-games-glow-color);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(87, 227, 141, 0.8);
}

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

.page-fishing-games__btn-secondary:hover {
    background-color: rgba(87, 227, 141, 0.1);
    transform: translateY(-3px);
}

.page-fishing-games__section {
    padding: 80px 20px;
    text-align: center;
}

.page-fishing-games__dark-section {
    background-color: var(--fishing-games-bg-color);
    color: var(--fishing-games-text-main-color);
}

.page-fishing-games__light-bg {
    background-color: var(--fishing-games-card-bg-color);
    color: var(--fishing-games-text-main-color);
}

.page-fishing-games__content-area {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.page-fishing-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--fishing-games-gold-color);
    text-align: center;
}

.page-fishing-games__content-area p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--fishing-games-text-secondary-color);
}

.page-fishing-games__card-grid {
    padding: 80px 20px;
}

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

.page-fishing-games__card {
    background-color: var(--fishing-games-card-bg-color);
    border: 1px solid var(--fishing-games-border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--fishing-games-text-main-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-fishing-games__card-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--fishing-games-deep-green-color);
}

.page-fishing-games__card-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--fishing-games-gold-color);
}

.page-fishing-games__card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--fishing-games-text-secondary-color);
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-fishing-games__card-button {
    margin-top: auto;
}

.page-fishing-games__text-block {
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__ordered-list,
.page-fishing-games__unordered-list {
    list-style-position: inside;
    text-align: left;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-fishing-games__ordered-list li,
.page-fishing-games__unordered-list li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--fishing-games-text-secondary-color);
}

.page-fishing-games__ordered-list li strong,
.page-fishing-games__unordered-list li strong {
    color: var(--fishing-games-text-main-color);
}

.page-fishing-games__link {
    color: var(--fishing-games-glow-color);
    text-decoration: underline;
}

.page-fishing-games__link:hover {
    color: var(--fishing-games-gold-color);
}

.page-fishing-games__image-container {
    margin: 30px auto;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

.page-fishing-games__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__mobile-app-flex {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-fishing-games__text-block--half,
.page-fishing-games__image-container--half {
    flex: 1 1 45%;
    min-width: 300px;
}

.page-fishing-games__sub-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--fishing-games-gold-color);
    text-align: left;
}

.page-fishing-games__faq-section {
    padding: 80px 20px;
}

.page-fishing-games__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__faq-item {
    background-color: var(--fishing-games-card-bg-color);
    border: 1px solid var(--fishing-games-border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--fishing-games-text-main-color);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--fishing-games-gold-color);
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item:hover .page-fishing-games__faq-question {
    background-color: rgba(46, 122, 78, 0.2);
}

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--fishing-games-glow-color);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    content: '−';
}

.page-fishing-games__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--fishing-games-text-secondary-color);
}

/* Details element specific styling for summary marker */
.page-fishing-games__faq-item summary {
    list-style: none;
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
    display: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__main-title {
        font-size: clamp(2.2rem, 6vw, 3rem);
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-fishing-games__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .page-fishing-games__intro-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games__section {
        padding: 50px 15px;
    }
    .page-fishing-games__content-area {
        padding: 0;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-fishing-games__card-grid {
        padding: 50px 15px;
    }
    .page-fishing-games__grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-fishing-games__card {
        padding: 20px;
    }
    .page-fishing-games__card-image {
        max-height: 200px;
    }
    .page-fishing-games__card-title {
        font-size: 1.6rem;
    }
    .page-fishing-games__content-area p,
    .page-fishing-games__ordered-list li,
    .page-fishing-games__unordered-list li {
        font-size: 0.95rem;
    }
    .page-fishing-games__image-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-fishing-games__mobile-app-flex {
        flex-direction: column;
        gap: 20px;
    }
    .page-fishing-games__text-block--half,
    .page-fishing-games__image-container--half {
        flex: 1 1 100%;
        min-width: unset;
    }
    .page-fishing-games__faq-section {
        padding: 50px 15px;
    }
    .page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-fishing-games__faq-answer {
        padding: 0 20px 15px;
    }
    .page-fishing-games__sub-title {
        font-size: 1.3rem;
    }
    .page-fishing-games__video-section {
        padding-top: 10px !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__video-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-fishing-games video,
    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}