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

.page-fishing-games-types-features {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--background);
}

/* Helper for sections to constrain width and center */
.page-fishing-games-types-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-fishing-games-types-features__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--background);
    overflow: hidden;
}

.page-fishing-games-types-features__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
    text-align: center;
}

.page-fishing-games-types-features__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-fishing-games-types-features__description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

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

.page-fishing-games-types-features__btn-primary,
.page-fishing-games-types-features__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games-types-features__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games-types-features__btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-types-features__btn-secondary:hover {
    background: var(--deep-green);
    border-color: var(--glow);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Sections */
.page-fishing-games-types-features__intro-section,
.page-fishing-games-types-features__types-section,
.page-fishing-games-types-features__features-section,
.page-fishing-games-types-features__strategy-section,
.page-fishing-games-types-features__faq-section {
    padding: 60px 0;
    background-color: var(--background);
    color: var(--text-main);
}

.page-fishing-games-types-features__dark-section {
    background-color: var(--card-bg);
    color: var(--text-main);
    padding: 60px 0;
}

.page-fishing-games-types-features__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--glow);
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-fishing-games-types-features__text-block {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
    color: var(--text-secondary);
}

.page-fishing-games-types-features__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Card Grid */
.page-fishing-games-types-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-fishing-games-types-features__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games-types-features__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-fishing-games-types-features__card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Feature List */
.page-fishing-games-types-features__feature-list,
.page-fishing-games-types-features__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-types-features__feature-item,
.page-fishing-games-types-features__strategy-item,
.page-fishing-games-types-features__advantage-item {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    color: var(--text-main);
}

.page-fishing-games-types-features__feature-title,
.page-fishing-games-types-features__strategy-title,
.page-fishing-games-types-features__advantage-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
}

.page-fishing-games-types-features__feature-text,
.page-fishing-games-types-features__strategy-text,
.page-fishing-games-types-features__advantage-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Why Choose Section (darker background for contrast) */
.page-fishing-games-types-features__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games-types-features__btn-center {
    display: block;
    margin: 50px auto 0 auto;
    width: fit-content;
}

/* FAQ Section */
.page-fishing-games-types-features__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games-types-features__faq-item summary {
    list-style: none;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
}

.page-fishing-games-types-features__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-fishing-games-types-features__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-fishing-games-types-features__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    width: 25px;
    text-align: center;
    color: var(--glow);
}

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

.page-fishing-games-types-features__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Bottom CTA Section */
.page-fishing-games-types-features__cta-bottom-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--background);
    color: var(--text-main);
}

.page-fishing-games-types-features__cta-bottom-section .page-fishing-games-types-features__container {
    background-color: var(--card-bg);
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-fishing-games-types-features__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-fishing-games-types-features__hero-content {
        padding: 0 15px;
    }
    .page-fishing-games-types-features__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-fishing-games-types-features__description {
        font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    }
    .page-fishing-games-types-features__section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .page-fishing-games-types-features__hero-section {
        padding-bottom: 40px;
    }
    .page-fishing-games-types-features__hero-image-wrapper {
        margin-bottom: 15px;
    }
    .page-fishing-games-types-features__hero-image {
        border-radius: 10px;
    }
    .page-fishing-games-types-features__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-fishing-games-types-features__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-fishing-games-types-features__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games-types-features__btn-primary,
    .page-fishing-games-types-features__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games-types-features__intro-section,
    .page-fishing-games-types-features__types-section,
    .page-fishing-games-types-features__features-section,
    .page-fishing-games-types-features__strategy-section,
    .page-fishing-games-types-features__faq-section,
    .page-fishing-games-types-features__dark-section,
    .page-fishing-games-types-features__cta-bottom-section {
        padding: 40px 0;
    }

    .page-fishing-games-types-features__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-fishing-games-types-features__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }

    .page-fishing-games-types-features__text-block {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* Images responsiveness */
    .page-fishing-games-types-features img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games-types-features__card-image {
        height: 180px;
    }

    /* Video responsiveness (if any, though not in this specific HTML) */
    .page-fishing-games-types-features video,
    .page-fishing-games-types-features__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-fishing-games-types-features__video-section,
    .page-fishing-games-types-features__video-container,
    .page-fishing-games-types-features__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }
    .page-fishing-games-types-features__video-section {
      padding-top: 10px !important;
    }
    .page-fishing-games-types-features__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-fishing-games-types-features__card {
        padding: 20px;
        border-radius: 10px;
    }

    .page-fishing-games-types-features__card-title {
        font-size: 1.3rem;
    }

    .page-fishing-games-types-features__faq-item summary {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    .page-fishing-games-types-features__faq-answer {
        padding: 0 20px 15px;
    }
    .page-fishing-games-types-features__cta-bottom-section .page-fishing-games-types-features__container {
        padding: 40px 20px;
    }
}