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

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

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

.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; 
    align-items: center;
    padding: 10px 0 60px 0; 
    background-color: var(--deep-green); 
}

.page-fishing-games__hero-image {
    width: 100%;
    max-width: 1920px; 
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 30px; 
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    color: var(--text-main);
}

.page-fishing-games__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); 
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-buttons {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%; 
    max-width: 600px; 
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; 
    box-sizing: border-box;
    white-space: normal; 
    word-wrap: break-word; 
}

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

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); 
}

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

.page-fishing-games__btn-secondary:hover {
    transform: translateY(-3px);
    background-color: rgba(87, 227, 141, 0.1); 
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__section-title {
    font-size: 2.5rem;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    padding-top: 60px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__text-block {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-fishing-games__introduction-section,
.page-fishing-games__guide-section,
.page-fishing-games__trust-section,
.page-fishing-games__conclusion-section {
    padding: 80px 0;
    background-color: var(--bg-primary); 
}

.page-fishing-games__game-review-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: var(--deep-green); 
}

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

.page-fishing-games__card {
    background-color: var(--card-bg); 
    color: var(--text-main); 
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px 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 8px 25px rgba(0, 0, 0, 0.5);
}

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

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

.page-fishing-games__feature-card,
.page-fishing-games__game-card,
.page-fishing-games__step-card,
.page-fishing-games__review-card {
    display: flex;
    flex-direction: column;
}

.page-fishing-games__features-grid,
.page-fishing-games__game-grid,
.page-fishing-games__steps-grid,
.page-fishing-games__review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

.page-fishing-games__promotion-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.page-fishing-games__promotion-card:nth-child(even) {
    flex-direction: row-reverse; 
}

.page-fishing-games__promotion-card .page-fishing-games__card-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    margin-bottom: 0;
}

.page-fishing-games__promotion-content {
    flex: 1;
    min-width: 300px;
}

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

.page-fishing-games__step-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: var(--text-secondary);
}

.page-fishing-games__step-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-fishing-games__step-list li:before {
    content: '✓';
    color: var(--glow-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--card-bg);
    color: var(--text-main);
}

.page-fishing-games__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold-color);
    transition: background-color 0.3s ease;
}

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

.page-fishing-games__faq-item summary:hover {
    background-color: rgba(46, 122, 78, 0.2); 
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    content: '−'; 
}

.page-fishing-games__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.page-fishing-games__faq-answer p {
    margin: 0;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-fishing-games__section-title {
        font-size: 2rem;
    }
    .page-fishing-games__hero-section {
        padding-bottom: 40px;
    }
    .page-fishing-games__promotion-card {
        flex-direction: column;
    }
    .page-fishing-games__promotion-card:nth-child(even) {
        flex-direction: column;
    }
    .page-fishing-games__promotion-card .page-fishing-games__card-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__container {
        padding: 0 15px;
    }
    .page-fishing-games__hero-image {
        margin-bottom: 20px;
    }
    .page-fishing-games__hero-content {
        padding: 0 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-fishing-games__hero-description {
        font-size: 1rem;
    }
    .page-fishing-games__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding-top: 40px;
    }
    .page-fishing-games__text-block {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px;
        font-size: 1rem;
        min-width: unset;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__hero-section,
    .page-fishing-games__introduction-section,
    .page-fishing-games__game-review-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__trust-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__conclusion-section,
    .page-fishing-games__feature-card,
    .page-fishing-games__game-card,
    .page-fishing-games__step-card,
    .page-fishing-games__review-card,
    .page-fishing-games__promotion-card,
    .page-fishing-games__promotion-content,
    .page-fishing-games__faq-item,
    .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;
    }

    .page-fishing-games__hero-section,
    .page-fishing-games__introduction-section,
    .page-fishing-games__game-review-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__trust-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__conclusion-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-fishing-games__hero-section {
        padding-top: 10px !important; 
    }

    .page-fishing-games__cta-buttons {
        padding-left: 0;
        padding-right: 0;
        gap: 10px;
    }
    .page-fishing-games__features-grid,
    .page-fishing-games__game-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__review-grid {
        gap: 20px;
        margin-top: 30px;
    }
    .page-fishing-games__card {
        padding: 20px;
    }
    .page-fishing-games__card-title {
        font-size: 1.4rem;
    }
    .page-fishing-games__faq-item summary {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-answer {
        padding: 0 20px 15px 20px;
    }
    .page-fishing-games__promotion-card .page-fishing-games__card-image {
        margin-bottom: 0;
    }
}