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

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

.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-fishing-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-fishing-games__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

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

.page-fishing-games__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background: var(--btn-gradient);
    color: var(--text-main);
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

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

.page-fishing-games__btn-secondary:hover {
    background-color: var(--gold-color);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.page-fishing-games__section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.page-fishing-games__section-title--gold {
    color: var(--gold-color);
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__description-text {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__dark-section {
    background-color: var(--deep-green);
    padding: 80px 0;
}

.page-fishing-games__about-section,
.page-fishing-games__games-showcase,
.page-fishing-games__how-to-play,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
    padding: 80px 0;
}

.page-fishing-games__grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-fishing-games__grid-layout--reverse {
    grid-template-areas: "content image";
}

.page-fishing-games__grid-layout--reverse .page-fishing-games__strategy-content {
    grid-area: content;
}

.page-fishing-games__grid-layout--reverse .page-fishing-games__strategy-image-wrapper {
    grid-area: image;
}

.page-fishing-games__about-image-wrapper,
.page-fishing-games__strategy-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__about-image,
.page-fishing-games__strategy-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-fishing-games__feature-list,
.page-fishing-games__strategy-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.page-fishing-games__feature-list li,
.page-fishing-games__strategy-list li {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.page-fishing-games__feature-icon,
.page-fishing-games__strategy-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--gold-color);
    line-height: 1;
}

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

.page-fishing-games__game-card,
.page-fishing-games__promo-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 30px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.page-fishing-games__game-image,
.page-fishing-games__promo-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 20px;
}

.page-fishing-games__game-title,
.page-fishing-games__promo-title {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 10px;
    padding: 0 20px;
}

.page-fishing-games__game-description,
.page-fishing-games__promo-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: auto;
}

.page-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 60px;
    max-width: 800px;
}

.page-fishing-games__steps-list li {
    background-color: var(--bg-card);
    border-left: 5px solid var(--gold-color);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 1.05rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__step-number {
    background-color: var(--gold-color);
    color: var(--bg-primary);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.page-fishing-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: var(--bg-card);
    border-radius: 10px;
    margin: 40px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    width: 100%; /* Ensure desktop width is 100% */
}

.page-fishing-games__video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.page-fishing-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.page-fishing-games__video-caption {
    margin-top: 20px;
    font-style: italic;
}

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 40px;
}

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

.page-fishing-games__faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--border-color);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    border-bottom: 1px solid var(--border-color);
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
}

.page-fishing-games__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 20px;
    color: var(--gold-color);
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

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

.page-fishing-games__faq-answer p {
    margin: 0;
}

/* Hide default details arrow */
.page-fishing-games__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-fishing-games__faq-item summary::marker {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-fishing-games__container {
        padding: 0 15px;
    }

    .page-fishing-games__hero-section {
        padding-bottom: 40px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .page-fishing-games__description {
        font-size: 1rem;
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-fishing-games__dark-section,
    .page-fishing-games__about-section,
    .page-fishing-games__games-showcase,
    .page-fishing-games__how-to-play,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-section {
        padding: 40px 0;
    }

    .page-fishing-games__grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-fishing-games__grid-layout--reverse {
        grid-template-areas: none;
    }

    .page-fishing-games__games-grid,
    .page-fishing-games__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__game-image,
    .page-fishing-games__promo-image {
        height: 180px;
    }

    .page-fishing-games__steps-list li {
        padding: 15px;
        font-size: 0.95rem;
    }

    .page-fishing-games__step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin-right: 15px;
    }

    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-fishing-games video,
    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__hero-image-wrapper,
    .page-fishing-games__about-image-wrapper,
    .page-fishing-games__strategy-image-wrapper,
    .page-fishing-games__video-wrapper,
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    
    .page-fishing-games__video-section {
        padding-top: 10px !important;
    }

    .page-fishing-games__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-fishing-games__faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .page-fishing-games__faq-toggle {
        font-size: 1.5rem;
    }

    .page-fishing-games__faq-answer {
        padding: 15px;
        font-size: 0.95rem;
    }
}