/* style/fishing-games.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-dark-body: #121212;
    --bg-light-section: #ffffff;
    --btn-login: #EA7C07;
}

.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--bg-dark-body); /* Should be inherited from body, but set for clarity */
}

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

/* Section Styles */
.page-fishing-games__hero-section,
.page-fishing-games__introduction-section,
.page-fishing-games__features-section,
.page-fishing-games__guide-section,
.page-fishing-games__tips-section,
.page-fishing-games__promo-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
    padding: 60px 0;
    box-sizing: border-box;
}

.page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    margin-top: 20px;
}

.page-fishing-games__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

/* Background Colors */
.page-fishing-games__dark-bg {
    background-color: #1a1a1a; /* Slightly lighter dark for sections to differentiate from body */
    color: var(--text-light);
}

.page-fishing-games__light-bg {
    background-color: var(--bg-light-section);
    color: var(--text-dark);
}

.page-fishing-games__light-bg h1,
.page-fishing-games__light-bg h2,
.page-fishing-games__light-bg h3,
.page-fishing-games__light-bg h4,
.page-fishing-games__light-bg h5,
.page-fishing-games__light-bg h6 {
    color: var(--text-dark);
}

/* Section Titles */
.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.page-fishing-games__section-title--cta {
    color: var(--text-dark);
}

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

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

.page-fishing-games__cta-buttons--small {
    margin-top: 20px;
    gap: 10px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-small {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    text-align: center;
}

.page-fishing-games__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-primary:hover {
    background-color: #1e87b6;
    border-color: #1e87b6;
}

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

.page-fishing-games__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-fishing-games__btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--primary-color);
}

.page-fishing-games__btn-small:hover {
    background-color: #1e87b6;
    border-color: #1e87b6;
}

.page-fishing-games__text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-fishing-games__text-link:hover {
    text-decoration: underline;
}

/* Images */
.page-fishing-games__image,
.page-fishing-games__feature-icon,
.page-fishing-games__promo-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
}

.page-fishing-games__feature-icon {
    margin-bottom: 20px;
    border-radius: 50%; /* Example style */
    width: 100px; /* Base size */
    height: 100px; /* Base size */
    object-fit: cover;
}

/* Introduction Section */
.page-fishing-games__introduction-section p {
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: justify;
}

/* Features Section */
.page-fishing-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__feature-card {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark section */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-fishing-games__feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Guide Section */
.page-fishing-games__guide-list {
    list-style: none;
    counter-reset: guide-step;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__guide-list li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
    font-size: 1rem;
    color: var(--text-dark);
}

.page-fishing-games__guide-list li::before {
    counter-increment: guide-step;
    content: counter(guide-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.page-fishing-games__guide-step-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Tips Section */
.page-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__tips-list li {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-fishing-games__tip-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.page-fishing-games__tips-list p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Promo Section */
.page-fishing-games__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__promo-card {
    background-color: var(--bg-light-section);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 20px;
    color: var(--text-dark);
}

.page-fishing-games__promo-card h3 {
    color: var(--text-dark);
}

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

.page-fishing-games__promo-title {
    font-size: 1.25rem;
    margin: 0 15px 15px;
}

.page-fishing-games__promo-card p {
    font-size: 0.95rem;
    margin: 0 15px 20px;
    color: var(--text-dark);
}

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

.page-fishing-games__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-light);
}

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

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

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    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 20px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.page-fishing-games__faq-answer p {
    margin-bottom: 10px;
}

/* CTA Section */
.page-fishing-games__cta-content {
    text-align: center;
}

.page-fishing-games__description--cta {
    color: var(--text-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__hero-section {
        padding: 40px 0;
    }
    .page-fishing-games__hero-image-wrapper {
        max-height: 500px;
    }
    .page-fishing-games__hero-content {
        padding: 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .page-fishing-games__description {
        font-size: 1rem;
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__promo-cards {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section,
    .page-fishing-games__introduction-section,
    .page-fishing-games__features-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__tips-section,
    .page-fishing-games__promo-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-section {
        padding: 40px 0;
    }
    .page-fishing-games__hero-image-wrapper {
        max-height: 400px;
    }
    .page-fishing-games__hero-content {
        margin-top: 10px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-fishing-games__description {
        font-size: 0.95rem;
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    /* Images responsive */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__image,
    .page-fishing-games__promo-image {
        margin: 20px auto;
    }
    .page-fishing-games__feature-icon {
        width: 80px;
        height: 80px;
    }

    /* Video responsive - if any video elements were present */
    .page-fishing-games video,
    .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 {
      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; /* Small top padding, body handles header offset */
    }

    /* Buttons responsive */
    .page-fishing-games__cta-button,
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games a[class*="button"],
    .page-fishing-games a[class*="btn"] {
        max-width: 100% !important;
        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__cta-buttons,
    .page-fishing-games__button-group,
    .page-fishing-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important;
        gap: 10px;
    }
    .page-fishing-games__cta-buttons--small .page-fishing-games__btn-primary,
    .page-fishing-games__cta-buttons--small .page-fishing-games__btn-secondary {
        width: auto !important; /* Allow small buttons to adjust width */
        max-width: unset !important;
        padding: 8px 15px !important;
    }

    /* Container padding for mobile */
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games__feature-card {
        padding: 20px;
    }
    .page-fishing-games__guide-list li {
        padding-left: 50px;
    }
    .page-fishing-games__guide-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .page-fishing-games__faq-item summary {
        font-size: 1rem;
        padding: 15px;
    }
    .page-fishing-games__faq-answer {
        padding: 0 15px 15px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-image-wrapper {
        max-height: 300px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    .page-fishing-games__description {
        font-size: 0.9rem;
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__promo-cards {
        grid-template-columns: 1fr;
    }
}