:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
    --text-on-dark: var(--color-text-main);
    --text-on-light: #333333;
    --text-on-medium: #000000;
}

.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-on-light);
    background-color: var(--color-background);
}

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

.page-fishing-games__light-bg {
    background-color: #ffffff;
    color: var(--text-on-light);
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: inherit;
}

.page-fishing-games__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
}

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

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

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-main);
    border: none;
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 255, 100, 0.3);
}

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

.page-fishing-games__btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-text-main);
    transform: translateY(-2px);
}

.page-fishing-games__hero-cta,
.page-fishing-games__cta-center,
.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

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

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

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    color: var(--text-on-dark);
}

.page-fishing-games__hero-title {
    font-size: clamp(2.5em, 5vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--color-text-main);
}

.page-fishing-games__introduction-section {
    padding: 60px 0;
}

.page-fishing-games__why-choose-section {
    padding: 60px 0;
}

.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: var(--color-card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    color: var(--text-on-dark);
}

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

.page-fishing-games__feature-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-gold);
}

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

.page-fishing-games__how-to-play-section {
    padding: 60px 0;
}

.page-fishing-games__steps-list {
    margin-top: 40px;
    display: grid;
    gap: 30px;
}

.page-fishing-games__step-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--color-primary);
    color: var(--text-on-light);
}

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

.page-fishing-games__step-description {
    font-size: 1em;
}

.page-fishing-games__popular-games-section {
    padding: 60px 0;
}

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

.page-fishing-games__game-card {
    background-color: var(--color-card-bg);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    color: var(--text-on-dark);
}

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

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

.page-fishing-games__game-description {
    font-size: 0.95em;
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

.page-fishing-games__game-button {
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-main);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: transform 0.3s ease;
    display: block;
    width: fit-content;
    margin: 0 auto;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__game-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 255, 100, 0.3);
}

.page-fishing-games__promotions-section {
    padding: 60px 0;
}

.page-fishing-games__promotion-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.page-fishing-games__promotion-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--color-secondary);
    color: var(--text-on-light);
}

.page-fishing-games__promotion-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.page-fishing-games__promotion-description {
    font-size: 1em;
}

.page-fishing-games__tips-section {
    padding: 60px 0;
}

.page-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.page-fishing-games__tip-item {
    background-color: var(--color-card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--color-gold);
    color: var(--text-on-dark);
}

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

.page-fishing-games__tip-description {
    font-size: 1em;
    color: var(--color-text-secondary);
}

.page-fishing-games__faq-section {
    padding: 60px 0;
}

.page-fishing-games__faq-list {
    margin-top: 40px;
    display: grid;
    gap: 15px;
}

.page-fishing-games__faq-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    color: var(--text-on-light);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    color: var(--color-primary);
    list-style: none;
}

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

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    font-weight: normal;
    color: var(--color-secondary);
    margin-left: 10px;
}

.page-fishing-games__faq-answer {
    padding-top: 15px;
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-on-light);
}

.page-fishing-games__cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-fishing-games__cta-content {
    max-width: 900px;
}

@media (max-width: 1024px) {
    .page-fishing-games__section-title {
        font-size: 2em;
    }
    .page-fishing-games__hero-title {
        font-size: clamp(2em, 4.5vw, 3em);
    }
    .page-fishing-games__hero-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__content-area {
        padding: 20px 15px !important;
    }

    .page-fishing-games__section-title {
        font-size: 1.8em !important;
        margin-bottom: 20px !important;
    }

    .page-fishing-games__hero-section {
        padding-bottom: 40px !important;
        padding-top: 10px !important;
    }

    .page-fishing-games__hero-image {
        max-height: 400px !important;
    }

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

    .page-fishing-games__hero-description {
        font-size: 1em !important;
    }

    .page-fishing-games__hero-cta,
    .page-fishing-games__cta-center,
    .page-fishing-games__cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games a[class*="button"],
    .page-fishing-games a[class*="btn"] {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games__features-grid,
    .page-fishing-games__game-list,
    .page-fishing-games__steps-list,
    .page-fishing-games__promotion-list,
    .page-fishing-games__tips-list,
    .page-fishing-games__faq-list {
        grid-template-columns: 1fr !important;
        gap: 20px !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__hero-image-wrapper,
    .page-fishing-games__feature-card,
    .page-fishing-games__game-card,
    .page-fishing-games__card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__feature-card,
    .page-fishing-games__game-card,
    .page-fishing-games__card {
        padding: 20px !important;
    }

    .page-fishing-games__faq-item {
        padding: 15px !important;
    }

    .page-fishing-games__faq-question {
        font-size: 1.1em !important;
    }

    .page-fishing-games__faq-answer {
        font-size: 0.95em !important;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__section-title {
        font-size: 1.5em !important;
    }
    .page-fishing-games__hero-title {
        font-size: clamp(1.5em, 8vw, 2em) !important;
    }
    .page-fishing-games__hero-description {
        font-size: 0.9em !important;
    }
    .page-fishing-games__feature-title,
    .page-fishing-games__game-title,
    .page-fishing-games__step-title,
    .page-fishing-games__promotion-title,
    .page-fishing-games__tip-title {
        font-size: 1.2em !important;
    }
}