/* style/fishing-games.css */

/* Variables for color scheme */
:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-background-deep: #08160F;
    --color-card-bg: #11271B;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

/* Base styles for the page */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--color-text-main); /* Default text color for dark background */
    background-color: var(--color-background-deep);
    line-height: 1.6;
}

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

.page-fishing-games__section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    line-height: 1.2;
}

.page-fishing-games__text-block {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--color-text-secondary);
    text-align: justify;
}

.page-fishing-games a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games a:hover {
    color: var(--color-gold);
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom */
    overflow: hidden;
}

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

.page-fishing-games__hero-content {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px; /* Overlap with image slightly for design effect */
    background: linear-gradient(to top, rgba(8, 22, 15, 0.95), rgba(8, 22, 15, 0.7));
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.page-fishing-games__hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-fishing-games__hero-description {
    font-size: 20px;
    color: var(--color-text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    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);
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-fishing-games__btn-secondary {
    background: none;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-fishing-games__btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--color-gold);
    color: var(--color-background-deep);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

/* General Section Styles */
.page-fishing-games__introduction-section,
.page-fishing-games__game-types-section,
.page-fishing-games__promotions-section,
.page-fishing-games__final-cta-section {
    padding: 80px 0;
    background-color: var(--color-background-deep);
    color: var(--color-text-main);
}

.page-fishing-games__advantages-section,
.page-fishing-games__strategy-section {
    padding: 80px 0;
    background-color: var(--color-card-bg);
    color: var(--color-text-main);
}

.page-fishing-games__light-bg {
    background-color: #f0f0f0; /* Lighter background for contrast */
    color: #333333; /* Darker text for light background */
}

.page-fishing-games__light-bg .page-fishing-games__section-title,
.page-fishing-games__light-bg .page-fishing-games__advantage-title,
.page-fishing-games__light-bg .page-fishing-games__game-title,
.page-fishing-games__light-bg .page-fishing-games__step-title,
.page-fishing-games__light-bg .page-fishing-games__strategy-title,
.page-fishing-games__light-bg .page-fishing-games__promotion-title,
.page-fishing-games__light-bg .page-fishing-games__faq-qtext {
    color: var(--color-primary);
}

.page-fishing-games__light-bg .page-fishing-games__text-block,
.page-fishing-games__light-bg .page-fishing-games__advantage-description,
.page-fishing-games__light-bg .page-fishing-games__game-description,
.page-fishing-games__light-bg .page-fishing-games__step-description,
.page-fishing-games__light-bg .page-fishing-games__strategy-description,
.page-fishing-games__light-bg .page-fishing-games__promotion-description,
.page-fishing-games__light-bg .page-fishing-games__faq-answer {
    color: #555555;
}

.page-fishing-games__light-bg a {
    color: var(--color-deep-green);
}

.page-fishing-games__light-bg a:hover {
    color: var(--color-primary);
}

.page-fishing-games__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__advantage-item {
    background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__advantage-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__advantage-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.page-fishing-games__advantage-description {
    font-size: 16px;
    color: var(--color-text-secondary);
}

/* Game Types Section */
.page-fishing-games__game-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-fishing-games__game-item {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__game-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.page-fishing-games__game-description {
    font-size: 16px;
    color: var(--color-text-secondary);
}

/* How to Play Section */
.page-fishing-games__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__step-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--color-primary);
}

.page-fishing-games__step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.page-fishing-games__step-description {
    font-size: 16px;
    color: #555555;
}

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

.page-fishing-games__strategy-item {
    background-color: rgba(17, 39, 27, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__strategy-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.page-fishing-games__strategy-description {
    font-size: 16px;
    color: var(--color-text-secondary);
}

/* Promotions Section */
.page-fishing-games__promotion-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-fishing-games__promotion-item {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__promotion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__promotion-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.page-fishing-games__promotion-description {
    font-size: 16px;
    color: var(--color-text-secondary);
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: #f0f0f0;
    color: #333333;
}

.page-fishing-games__faq-list {
    margin-top: 40px;
}

.page-fishing-games__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-deep-green);
    cursor: pointer;
    list-style: none;
    position: relative;
}

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

.page-fishing-games__faq-item details > summary {
    list-style: none;
}

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

.page-fishing-games__faq-toggle {
    font-size: 24px;
    line-height: 1;
    color: var(--color-primary);
    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: 15px 25px 20px 25px;
    font-size: 16px;
    color: #555555;
    border-top: 1px solid #eee;
}

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

/* Final CTA Section */
.page-fishing-games__final-cta-section {
    text-align: center;
    padding: 100px 0;
    background-color: var(--color-card-bg);
}

.page-fishing-games__final-cta-section .page-fishing-games__section-title {
    color: var(--color-gold);
    margin-bottom: 30px;
}

.page-fishing-games__final-cta-section .page-fishing-games__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    margin-bottom: 40px;
}

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

    .page-fishing-games__section-title {
        font-size: clamp(24px, 5vw, 38px);
    }

    .page-fishing-games__text-block {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games {
        font-size: 16px;
        line-height: 1.6;
    }

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

    .page-fishing-games__hero-content {
        margin-top: -40px;
        padding: 30px 15px;
        border-radius: 10px;
    }

    .page-fishing-games__hero-title {
        font-size: clamp(28px, 6vw, 48px);
        margin-bottom: 15px;
    }

    .page-fishing-games__hero-description {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .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: 16px;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games__introduction-section,
    .page-fishing-games__advantages-section,
    .page-fishing-games__game-types-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__final-cta-section {
        padding: 50px 0;
    }

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

    .page-fishing-games__section-title {
        font-size: clamp(22px, 6vw, 36px);
        margin-bottom: 30px;
    }

    .page-fishing-games__text-block {
        font-size: 16px;
    }

    .page-fishing-games__image-content {
        margin: 30px auto;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__advantage-list,
    .page-fishing-games__game-list,
    .page-fishing-games__strategy-list,
    .page-fishing-games__promotion-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__advantage-item,
    .page-fishing-games__game-item,
    .page-fishing-games__strategy-item,
    .page-fishing-games__promotion-item {
        padding: 25px;
    }

    .page-fishing-games__advantage-title,
    .page-fishing-games__game-title,
    .page-fishing-games__step-title,
    .page-fishing-games__strategy-title,
    .page-fishing-games__promotion-title {
        font-size: 20px;
    }

    .page-fishing-games__faq-question {
        padding: 18px 20px;
        font-size: 17px;
    }

    .page-fishing-games__faq-answer {
        padding: 12px 20px 15px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-content {
        margin-top: -20px;
        padding: 20px 10px;
    }

    .page-fishing-games__hero-title {
        font-size: clamp(24px, 7vw, 40px);
    }

    .page-fishing-games__hero-description {
        font-size: 16px;
    }

    .page-fishing-games__section-title {
        font-size: clamp(20px, 7vw, 32px);
    }

    .page-fishing-games__text-block {
        font-size: 15px;
    }
}