:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --bg-color: #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-color);
    color: var(--text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.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: clamp(2em, 4vw, 2.8em);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-fishing-games__text-block {
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-secondary);
    font-size: 1.1em;
}

.page-fishing-games__dark-section {
    background-color: var(--deep-green);
    color: var(--text-main);
}

/* 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; /* body handles top padding, only small decorative top padding here */
    overflow: hidden;
    background-color: var(--bg-color);
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-fishing-games__hero-content {
    padding: 40px 20px;
    text-align: center;
    max-width: 900px;
    margin-top: -80px; /* Overlap slightly for visual flow */
    background-color: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    z-index: 10;
}

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

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

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

.page-fishing-games__cta-buttons--center {
    justify-content: center;
    margin-top: 30px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    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;
}

.page-fishing-games__btn-primary {
    background: var(--btn-gradient);
    color: #ffffff;
    border: none;
    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);
}

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

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

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

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

.page-fishing-games__card:hover {
    transform: translateY(-5px);
}

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

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

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

/* Video Section */
.page-fishing-games__video-section {
    padding: 60px 20px; /* Small decorative top padding */
    text-align: center;
    background-color: var(--deep-green);
}

.page-fishing-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%; /* Desktop width */
    max-width: 900px; /* Max width for desktop */
    box-sizing: border-box;
}

.page-fishing-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    display: block;
}

.page-fishing-games__video-cta {
    margin-top: 30px;
}

/* 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(300px, 1fr));
    gap: 25px;
}

.page-fishing-games__game-item {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    color: var(--text-main);
}

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

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

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

.page-fishing-games__step-item {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    color: var(--text-main);
}

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

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

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

.page-fishing-games__step-description a:hover {
    color: var(--glow-color);
}

/* 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: 25px;
}

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

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

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

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

.page-fishing-games__promo-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    color: var(--text-main);
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-5px);
}

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

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

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

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

.page-fishing-games__reason-item {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    color: var(--text-main);
}

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

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

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
}

.page-fishing-games__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: var(--text-main);
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding: 10px 0 40px 0;
    }

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

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

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

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

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games__content-area {
        padding: 30px 15px;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.8em, 7vw, 2.2em);
        margin-bottom: 25px;
    }

    .page-fishing-games__text-block {
        font-size: 0.95em;
    }

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

    .page-fishing-games__card,
    .page-fishing-games__game-item,
    .page-fishing-games__step-item,
    .page-fishing-games__strategy-item,
    .page-fishing-games__promo-card,
    .page-fishing-games__reason-item,
    .page-fishing-games__faq-item {
        padding: 20px;
    }

    .page-fishing-games__card-image,
    .page-fishing-games__promo-image {
        height: 180px;
    }

    .page-fishing-games__video-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles --header-offset, this is small decorative */
    }

    .page-fishing-games__video-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 0;
        padding-right: 0;
    }

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

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

    .page-fishing-games__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-fishing-games__faq-answer {
        padding: 0 20px 15px;
        font-size: 1em;
    }
    
    .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;
      flex-wrap: wrap !important;
      gap: 10px;
    }
}

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

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

    .page-fishing-games__section-title {
        font-size: clamp(1.6em, 8vw, 2em);
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        padding: 10px 15px;
        font-size: 0.9em;
    }

    .page-fishing-games__card-title,
    .page-fishing-games__promo-title {
        font-size: 1.5em;
    }

    .page-fishing-games__game-title,
    .page-fishing-games__step-title,
    .page-fishing-games__strategy-title,
    .page-fishing-games__reason-title {
        font-size: 1.4em;
    }

    .page-fishing-games__faq-question {
        font-size: 1em;
    }
}