/* style/fishing-games.css */

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

.page-fishing-games {
    background-color: var(--page-fishing-games-main-bg);
    color: var(--page-fishing-games-text-main); /* Light text on dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom */
    background-color: var(--page-fishing-games-deep-green); /* Darker background for hero */
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Adjust as needed for hero image */
    margin-bottom: 30px;
}

.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, 5vw, 3.5rem); /* Responsive H1 font size */
    color: var(--page-fishing-games-gold-color);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.6);
}

.page-fishing-games__description {
    font-size: 1.2rem;
    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;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-fishing-games__btn-primary {
    background: var(--page-fishing-games-button-gradient);
    color: var(--page-fishing-games-text-main); /* White text on green gradient */
    border: none;
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

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

.page-fishing-games__btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    background-color: rgba(242, 193, 78, 0.1);
}

/* Section common styles */
.page-fishing-games__about-section,
.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__tips-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-fishing-games-divider-color);
}

.page-fishing-games__section-title {
    font-size: 2.5rem;
    color: var(--page-fishing-games-gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__text-block {
    font-size: 1.1rem;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-fishing-games__text-block a {
    color: var(--page-fishing-games-secondary-color);
    text-decoration: underline;
}

.page-fishing-games__image-text-block {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.page-fishing-games__content-image {
    width: 50%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    min-width: 200px; /* Min size for content images */
}

/* Features Section */
.page-fishing-games__feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-fishing-games__feature-item {
    background-color: var(--page-fishing-games-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-fishing-games-border-color);
    text-align: center;
}

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

.page-fishing-games__feature-description {
    color: var(--page-fishing-games-text-secondary);
    font-size: 1rem;
}

/* How to Play Section */
.page-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-fishing-games__step-item {
    background-color: var(--page-fishing-games-card-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--page-fishing-games-border-color);
    position: relative;
    padding-left: 70px; /* Space for step number */
}

.page-fishing-games__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 25px;
    top: 25px;
    width: 35px;
    height: 35px;
    background: var(--page-fishing-games-button-gradient);
    color: var(--page-fishing-games-text-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__step-title {
    font-size: 1.4rem;
    color: var(--page-fishing-games-gold-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games__step-description {
    color: var(--page-fishing-games-text-secondary);
    font-size: 1rem;
}

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

/* Tips Section */
.page-fishing-games__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);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-fishing-games-border-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--page-fishing-games-text-secondary); /* Ensure text contrast on card background */
}

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

.page-fishing-games__card-text {
    font-size: 1rem;
    color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistent card images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Min size for card images */
}

/* FAQ Section */
.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.page-fishing-games__faq-item summary {
    list-style: none; /* Hide default marker */
}

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    color: var(--page-fishing-games-text-main);
    font-weight: 600;
    cursor: pointer;
    background-color: var(--page-fishing-games-deep-green); /* Slightly darker for question bar */
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: var(--page-fishing-games-primary-color);
}

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

.page-fishing-games__faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--page-fishing-games-gold-color);
    margin-left: 15px;
}

.page-fishing-games__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: var(--page-fishing-games-text-secondary);
    border-top: 1px solid var(--page-fishing-games-border-color);
    background-color: var(--page-fishing-games-card-bg);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

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

/* Responsive styles */
@media (max-width: 992px) {
    .page-fishing-games__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .page-fishing-games__description {
        font-size: 1.1rem;
    }
    .page-fishing-games__image-text-block {
        flex-direction: column;
        gap: 20px;
    }
    .page-fishing-games__content-image {
        width: 100%;
        max-width: 600px;
    }
    .page-fishing-games__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-fishing-games__container {
        padding: 0 15px;
    }
    .page-fishing-games__hero-section {
        padding: 10px 0 30px 0;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-fishing-games__description {
        font-size: 1rem;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }

    /* Images responsiveness */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__hero-image-wrapper,
    .page-fishing-games__content-image,
    .page-fishing-games__card-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }
    .page-fishing-games__about-section,
    .page-fishing-games__features-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__tips-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-section {
        padding: 40px 0;
    }
    .page-fishing-games__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-fishing-games__text-block,
    .page-fishing-games__feature-description,
    .page-fishing-games__step-description,
    .page-fishing-games__card-text,
    .page-fishing-games__faq-answer {
        font-size: 0.95rem;
    }
    .page-fishing-games__feature-list,
    .page-fishing-games__grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-toggle {
        font-size: 1.5rem;
    }
    .page-fishing-games__step-item {
        padding-left: 60px;
    }
    .page-fishing-games__step-item::before {
        left: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    .page-fishing-games__section-title {
        font-size: 1.5rem;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        font-size: 1rem;
        padding: 10px 15px;
    }
}