:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --background-color: #F4F7FB;
    --text-main: #1F2D3D;
    --text-dark: #000000;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
}

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

.page-fishing-games-types__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 10px; /* Small top padding as per requirement */
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-fishing-games-types__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 20px;
}

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

.page-fishing-games-types__hero-content {
    max-width: 900px;
    padding: 0 15px;
    z-index: 1;
}

.page-fishing-games-types__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-fishing-games-types__lead-text {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.page-fishing-games-types__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-fishing-games-types__btn-primary,
.page-fishing-games-types__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    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-types__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-types__btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.page-fishing-games-types__btn-secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-types__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.page-fishing-games-types__intro-section,
.page-fishing-games-types__game-types-section,
.page-fishing-games-types__features-section,
.page-fishing-games-types__tips-section,
.page-fishing-games-types__faq-section,
.page-fishing-games-types__contact-cta {
    padding: 60px 20px;
}

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

.page-fishing-games-types__dark-bg {
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-fishing-games-types__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-fishing-games-types__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-fishing-games-types__dark-bg .page-fishing-games-types__section-title {
    color: #ffffff;
}

.page-fishing-games-types p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: inherit;
}

.page-fishing-games-types a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

.page-fishing-games-types__game-card,
.page-fishing-games-types__tip-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--text-main);
}

.page-fishing-games-types__game-card .page-fishing-games-types__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

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

.page-fishing-games-types__game-card p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-fishing-games-types__game-card .page-fishing-games-types__btn-secondary {
    margin-top: auto;
}

.page-fishing-games-types__feature-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 0;
    max-width: 800px;
}

.page-fishing-games-types__feature-list li {
    background-color: var(--card-bg);
    padding: 18px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    color: var(--text-main);
}

.page-fishing-games-types__feature-list li strong {
    color: var(--primary-color);
    margin-right: 10px;
}

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

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

.page-fishing-games-types__tip-card {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.page-fishing-games-types__tip-card .page-fishing-games-types__card-title {
    color: #ffffff;
}

.page-fishing-games-types__more-tips-text {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
    color: #ffffff;
}

.page-fishing-games-types__more-tips-text a {
    color: var(--secondary-color);
    font-weight: 600;
}

.page-fishing-games-types__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-fishing-games-types__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main);
}

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

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

.page-fishing-games-types__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-fishing-games-types__faq-item[open] .page-fishing-games-types__faq-toggle {
    transform: rotate(45deg);
}

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

.page-fishing-games-types__faq-answer p {
    margin-bottom: 0;
}

.page-fishing-games-types__contact-cta {
    text-align: center;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 80px 20px;
}

.page-fishing-games-types__contact-cta-inner {
    max-width: 800px;
}

.page-fishing-games-types__contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-fishing-games-types__contact-cta p a {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-fishing-games-types__hero-section {
        padding: 15px;
        padding-top: 10px !important;
    }

    .page-fishing-games-types__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-fishing-games-types__lead-text {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .page-fishing-games-types__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .page-fishing-games-types__btn-primary,
    .page-fishing-games-types__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games-types__intro-section,
    .page-fishing-games-types__game-types-section,
    .page-fishing-games-types__features-section,
    .page-fishing-games-types__tips-section,
    .page-fishing-games-types__faq-section,
    .page-fishing-games-types__contact-cta {
        padding: 40px 15px;
    }

    .page-fishing-games-types__container {
        padding: 0;
    }

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

    .page-fishing-games-types p,
    .page-fishing-games-types li,
    .page-fishing-games-types__faq-answer p {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-fishing-games-types__game-card,
    .page-fishing-games-types__tip-card {
        padding: 20px;
    }

    .page-fishing-games-types__game-card .page-fishing-games-types__card-image {
        height: 180px;
    }

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

    .page-fishing-games-types__feature-list li {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-fishing-games-types__faq-item summary {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-fishing-games-types__faq-answer {
        padding: 0 20px 15px;
    }

    .page-fishing-games-types img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-fishing-games-types__section,
    .page-fishing-games-types__card,
    .page-fishing-games-types__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-fishing-games-types__video-section,
    .page-fishing-games-types__video-container,
    .page-fishing-games-types__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 video,
    .page-fishing-games-types__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games-types__hero-section,
    .page-fishing-games-types__intro-section,
    .page-fishing-games-types__game-types-section,
    .page-fishing-games-types__features-section,
    .page-fishing-games-types__tips-section,
    .page-fishing-games-types__faq-section,
    .page-fishing-games-types__contact-cta {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}