/* style/fishing-games.css */

/* Custom Colors */
:root {
    --page-fishing-games-bg-primary: #08160F;
    --page-fishing-games-card-bg: #11271B;
    --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-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

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

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

/* Sections */
.page-fishing-games__hero-section,
.page-fishing-games__game-showcase-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__strategies-section,
.page-fishing-games__promotions-section,
.page-fishing-games__why-choose-us-section,
.page-fishing-games__faq-section,
.page-fishing-games__conclusion-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

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

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

/* Hero Section */
.page-fishing-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
}

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

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.page-fishing-games__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    color: var(--page-fishing-games-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-fishing-games__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--page-fishing-games-text-secondary);
    margin-bottom: 30px;
}

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

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

.page-fishing-games__btn-primary {
    background: var(--page-fishing-games-button-gradient);
    color: var(--page-fishing-games-text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

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

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

.page-fishing-games__btn-card {
    background: var(--page-fishing-games-button-gradient);
    color: var(--page-fishing-games-text-main);
    border: none;
    padding: 10px 20px;
    font-size: 1em;
}

.page-fishing-games__btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

/* Section Titles & Descriptions */
.page-fishing-games__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--page-fishing-games-gold);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    color: var(--page-fishing-games-text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Game Cards Grid */
.page-fishing-games__game-cards-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: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__card-title {
    font-size: 1.5em;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 10px;
}

.page-fishing-games__card-text {
    font-size: 0.95em;
    color: var(--page-fishing-games-text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* How-To-Play Steps */
.page-fishing-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-fishing-games__step-item {
    background-color: var(--page-fishing-games-deep-green);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__step-text {
    font-size: 1em;
    color: var(--page-fishing-games-text-secondary);
    line-height: 1.5;
}

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

/* Strategies Section */
.page-fishing-games__strategy-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-fishing-games__strategy-item {
    background-color: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__strategy-title {
    font-size: 1.3em;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 10px;
}

.page-fishing-games__strategy-text {
    font-size: 0.95em;
    color: var(--page-fishing-games-text-secondary);
    line-height: 1.6;
}

/* Promotions Section */
.page-fishing-games__promotion-card {
    display: flex;
    background-color: var(--page-fishing-games-card-bg);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__promotion-card--reverse {
    flex-direction: row-reverse;
}

.page-fishing-games__promotion-image {
    width: 50%;
    height: auto;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__promotion-content {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-fishing-games__promotion-title {
    font-size: 1.8em;
    color: var(--page-fishing-games-gold);
    margin-bottom: 15px;
}

.page-fishing-games__promotion-text {
    font-size: 1.05em;
    color: var(--page-fishing-games-text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Why Choose Us Section */
.page-fishing-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-fishing-games__feature-item {
    background-color: var(--page-fishing-games-deep-green);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px; /* Enforcing minimum size for content images */
}

.page-fishing-games__feature-title {
    font-size: 1.4em;
    color: var(--page-fishing-games-text-main);
    margin-bottom: 10px;
}

.page-fishing-games__feature-text {
    font-size: 0.95em;
    color: var(--page-fishing-games-text-secondary);
    line-height: 1.6;
}

/* 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);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: var(--page-fishing-games-text-main);
    cursor: pointer;
    list-style: none;
}

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

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    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: 1em;
    color: var(--page-fishing-games-text-secondary);
    line-height: 1.6;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 2em;
    }
    .page-fishing-games__promotion-card {
        flex-direction: column;
    }
    .page-fishing-games__promotion-card--reverse {
        flex-direction: column;
    }
    .page-fishing-games__promotion-image,
    .page-fishing-games__promotion-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section,
    .page-fishing-games__game-showcase-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__strategies-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__why-choose-us-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__conclusion-section {
        padding: 40px 0;
        padding-top: 10px !important; /* Ensure small top padding for mobile */
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-fishing-games__hero-description,
    .page-fishing-games__section-description,
    .page-fishing-games__card-text,
    .page-fishing-games__step-text,
    .page-fishing-games__strategy-text,
    .page-fishing-games__promotion-text,
    .page-fishing-games__feature-text,
    .page-fishing-games__faq-answer p {
        font-size: 15px;
        line-height: 1.6;
    }

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

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games__btn-card,
    .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__container,
    .page-fishing-games__game-cards-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__strategy-list,
    .page-fishing-games__features-grid,
    .page-fishing-games__faq-list {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        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;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-fishing-games__feature-icon {
        width: 100px !important;
        height: 100px !important;
        min-width: 100px !important;
        min-height: 100px !important;
    }

    .page-fishing-games__promotion-card {
        flex-direction: column;
    }
    .page-fishing-games__promotion-card--reverse {
        flex-direction: column;
    }
    .page-fishing-games__promotion-image,
    .page-fishing-games__promotion-content {
        width: 100%;
    }
}