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

.page-fishing-games {
    background-color: var(--bg-main);
    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;
    justify-content: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
}

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

.page-fishing-games__hero-content {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(8, 22, 15, 0.8);
    width: 100%;
    box-sizing: border-box;
}

.page-fishing-games__main-title {
    color: var(--text-main);
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__description {
    color: var(--text-secondary);
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    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 {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

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

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.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-main);
}

.page-fishing-games__section-title {
    color: var(--gold-color);
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--glow-color);
    border-radius: 2px;
}

.page-fishing-games__intro-section,
.page-fishing-games__guide-section,
.page-fishing-games__promo-section,
.page-fishing-games__faq-section {
    background-color: var(--bg-card);
    padding: 60px 0;
    color: var(--text-main);
}

.page-fishing-games__games-section,
.page-fishing-games__strategy-section,
.page-fishing-games__security-section,
.page-fishing-games__conclusion-section {
    background-color: var(--bg-main);
    padding: 60px 0;
    color: var(--text-main);
}

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

.page-fishing-games__game-card,
.page-fishing-games__promo-card {
    background-color: var(--deep-green);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
}

.page-fishing-games__game-card img,
.page-fishing-games__promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    min-height: 200px;
}

.page-fishing-games__card-title {
    color: var(--gold-color);
    font-size: 1.5em;
    margin: 20px 15px 10px;
}

.page-fishing-games__game-card p,
.page-fishing-games__promo-card p {
    color: var(--text-secondary);
    padding: 0 15px;
}

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

.page-fishing-games__guide-content {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.page-fishing-games__guide-content img {
    flex: 1 1 400px;
    max-width: 50%;
    border-radius: 10px;
    object-fit: cover;
    min-height: 200px;
}

.page-fishing-games__guide-text {
    flex: 1 1 400px;
}

.page-fishing-games__guide-text ol {
    list-style: none;
    counter-reset: guide-counter;
    padding: 0;
}

.page-fishing-games__guide-text ol li {
    counter-increment: guide-counter;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    color: var(--text-main);
}

.page-fishing-games__guide-text ol li::before {
    content: counter(guide-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: var(--text-main);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
}

.page-fishing-games__guide-text strong {
    color: var(--gold-color);
}

.page-fishing-games__guide-text a {
    color: var(--glow-color);
    text-decoration: none;
}

.page-fishing-games__guide-text a:hover {
    text-decoration: underline;
}

.page-fishing-games__strategy-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-fishing-games__strategy-list li {
    background-color: var(--deep-green);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: var(--text-secondary);
}

.page-fishing-games__strategy-list h3 {
    color: var(--gold-color);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-fishing-games__security-content {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap-reverse;
}

.page-fishing-games__security-content img {
    flex: 1 1 400px;
    max-width: 50%;
    border-radius: 10px;
    object-fit: cover;
    min-height: 200px;
}

.page-fishing-games__security-list {
    flex: 1 1 400px;
    list-style: none;
    padding: 0;
}

.page-fishing-games__security-list li {
    background-color: var(--deep-green);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
}

.page-fishing-games__security-list h3 {
    color: var(--gold-color);
    font-size: 1.2em;
    margin-bottom: 8px;
}

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

.page-fishing-games__faq-item {
    background-color: var(--deep-green);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--text-main);
    font-weight: bold;
    font-size: 1.1em;
    list-style: none; /* For details/summary */
}

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

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

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
}

.page-fishing-games__faq-answer {
    padding: 15px 25px 20px;
    background-color: var(--bg-card);
    color: var(--text-secondary);
}

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

.page-fishing-games__conclusion-section .page-fishing-games__cta-content {
    text-align: center;
    padding: 40px 20px;
}

.page-fishing-games__conclusion-section .page-fishing-games__section-title {
    color: var(--gold-color);
}

.page-fishing-games__conclusion-section p {
    color: var(--text-secondary);
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        padding: 30px 20px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }
    .page-fishing-games__description {
        font-size: 1.1em;
    }
    .page-fishing-games__guide-content img,
    .page-fishing-games__security-content img {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .page-fishing-games__guide-text,
    .page-fishing-games__security-list {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__container,
    .page-fishing-games__hero-section,
    .page-fishing-games__intro-section,
    .page-fishing-games__games-section,
    .page-fishing-games__guide-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promo-section,
    .page-fishing-games__security-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__conclusion-section,
    .page-fishing-games__game-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__strategy-list li,
    .page-fishing-games__security-list li,
    .page-fishing-games__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__hero-section {
        padding-top: 10px !important;
    }
    .page-fishing-games__section-title {
        font-size: 2em;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-fishing-games__guide-content,
    .page-fishing-games__security-content {
        flex-direction: column;
    }
    .page-fishing-games__guide-content img,
    .page-fishing-games__security-content img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    .page-fishing-games__guide-text ol li {
        padding-left: 35px;
    }
    .page-fishing-games__guide-text ol li::before {
        width: 25px;
        height: 25px;
        font-size: 0.8em;
    }
    .page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-fishing-games__faq-answer {
        padding: 10px 20px 15px;
    }
    .page-fishing-games__game-grid, .page-fishing-games__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__game-card img, .page-fishing-games__promo-card img {
        height: auto; /* Allow height to adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }
    .page-fishing-games__description {
        font-size: 1em;
    }
    .page-fishing-games__section-title {
        font-size: 1.8em;
    }
    .page-fishing-games__hero-content {
        padding: 20px 15px;
    }
    .page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
        font-size: 0.9em;
    }
    .page-fishing-games__intro-section, .page-fishing-games__games-section, .page-fishing-games__guide-section, .page-fishing-games__strategy-section, .page-fishing-games__promo-section, .page-fishing-games__security-section, .page-fishing-games__faq-section, .page-fishing-games__conclusion-section {
        padding: 40px 0;
    }
}