/* style/fishing-games.css */

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

.page-fishing-games {
    font-family: Arial, sans-serif;
    color: var(--page-fishing-games-text-main); /* Default text color for dark background */
    background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height to prevent excessive stretching */
    overflow: hidden;
    position: relative;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
    margin-top: -150px; /* Adjust margin to bring content slightly over image */
}

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

.page-fishing-games__intro-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 30px;
}

.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.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;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-fishing-games__btn-primary {
    background: var(--page-fishing-games-button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

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

.page-fishing-games__btn-secondary:hover {
    background-color: rgba(42, 209, 111, 0.1);
    color: var(--page-fishing-games-glow);
    transform: translateY(-2px);
}

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

.page-fishing-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--page-fishing-games-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__section-description {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    color: var(--page-fishing-games-text-secondary);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.page-fishing-games__feature-grid,
.page-fishing-games__promo-grid,
.page-fishing-games__steps-grid,
.page-fishing-games__trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

.page-fishing-games__feature-image,
.page-fishing-games__trust-icon {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__feature-heading,
.page-fishing-games__promo-heading,
.page-fishing-games__step-heading,
.page-fishing-games__tips-heading,
.page-fishing-games__trust-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--page-fishing-games-glow);
    margin-bottom: 15px;
}

.page-fishing-games__feature-description,
.page-fishing-games__promo-text,
.page-fishing-games__step-text,
.page-fishing-games__tips-item p,
.page-fishing-games__trust-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__step-number {
    background-color: var(--page-fishing-games-deep-green);
    color: var(--page-fishing-games-gold);
    font-size: 2rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 2px solid var(--page-fishing-games-border);
}

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

.page-fishing-games__tips-item {
    background-color: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__faq-section {
    background-color: var(--page-fishing-games-deep-green);
    color: var(--page-fishing-games-text-main);
}

.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-fishing-games__faq-item {
    background-color: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-fishing-games__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--page-fishing-games-text-main);
    cursor: pointer;
    position: relative;
    outline: none;
}

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

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    color: var(--page-fishing-games-glow);
}

.page-fishing-games__faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1;
    margin-left: 15px;
    color: var(--page-fishing-games-gold);
    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: 0 25px 20px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--page-fishing-games-text-secondary);
}

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

.page-fishing-games__cta-final-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--page-fishing-games-background);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        margin-top: -100px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-bottom: 40px;
    }

    .page-fishing-games__hero-content {
        margin-top: -80px;
    }

    .page-fishing-games__main-title {
        font-size: 2.2rem;
    }

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

    .page-fishing-games__section {
        padding: 40px 15px;
    }

    .page-fishing-games__section-title {
        font-size: 2rem;
    }

    .page-fishing-games__section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .page-fishing-games__feature-grid,
    .page-fishing-games__promo-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
        margin: 0 auto;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games__container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__video-section,
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper,
    .page-fishing-games__card,
    .page-fishing-games__section,
    .page-fishing-games__feature-item,
    .page-fishing-games__promo-item,
    .page-fishing-games__step-item,
    .page-fishing-games__trust-item,
    .page-fishing-games__tips-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games__video-section {
        padding-top: 10px !important;
    }

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

    .page-fishing-games__faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: 1.8rem;
    }

    .page-fishing-games__section-title {
        font-size: 1.6rem;
    }

    .page-fishing-games__feature-heading,
    .page-fishing-games__promo-heading,
    .page-fishing-games__step-heading,
    .page-fishing-games__tips-heading,
    .page-fishing-games__trust-heading {
        font-size: 1.3rem;
    }

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