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

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color); /* Default text color for light background */
    background-color: var(--background-color);
}

.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--background-color);
}

.page-fishing-games__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-fishing-games__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

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

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-fishing-games__hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-main-color);
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-fishing-games__cta-button--secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.page-fishing-games__cta-button--secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-fishing-games__text-block {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main-color);
    margin-bottom: 20px;
    text-align: justify;
}

.page-fishing-games__highlight {
    font-weight: bold;
    color: var(--primary-color);
}

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

.page-fishing-games__dark-bg .page-fishing-games__section-title,
.page-fishing-games__dark-bg .page-fishing-games__text-block,
.page-fishing-games__dark-bg .page-fishing-games__highlight {
    color: #ffffff;
}

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

/* Intro Section */
.page-fishing-games__intro-section .page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

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

.page-fishing-games__feature-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-fishing-games__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__feature-card img {
    
    
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.page-fishing-games__feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-fishing-games__feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main-color);
}

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

.page-fishing-games__game-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-fishing-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.page-fishing-games__game-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    padding: 20px 20px 10px;
}

.page-fishing-games__game-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-main-color);
    padding: 0 20px 20px;
}

.page-fishing-games__btn-primary {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 20px;
    background: var(--button-gradient);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-fishing-games__game-types-section .page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

/* Promotions Section */
.page-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games__promo-list li {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ffffff;
    border-left: 5px solid var(--secondary-color);
}

.page-fishing-games__promo-list li strong {
    color: var(--secondary-color);
}

.page-fishing-games__promotions-section .page-fishing-games__cta-button {
    margin-top: 40px;
}

/* Security & Support Section */
.page-fishing-games__security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__security-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.page-fishing-games__security-item img {
    
    
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-fishing-games__security-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-fishing-games__security-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main-color);
}

.page-fishing-games__security-support-section .page-fishing-games__cta-button {
    margin-top: 40px;
}

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

details.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}

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

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
    background: #f8f8f8;
}

.page-fishing-games__faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main-color);
}

.page-fishing-games__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
    transition: transform 0.2s ease;
}

details[open] .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 20px 20px;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main-color);
}

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

.page-fishing-games__blog-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-fishing-games__blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__blog-card img {
    width: 100%;
    
    object-fit: cover;
    display: block;
}

.page-fishing-games__blog-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    padding: 20px 20px 10px;
}

.page-fishing-games__blog-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__blog-card h3 a:hover {
    color: var(--secondary-color);
}

.page-fishing-games__blog-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-main-color);
    padding: 0 20px 20px;
}

.page-fishing-games__blog-section .page-fishing-games__cta-button {
    margin-top: 50px;
}

/* Call to Action Section */
.page-fishing-games__call-to-action {
    padding: 80px 20px;
    text-align: center;
}

.page-fishing-games__call-to-action .page-fishing-games__section-title {
    color: #ffffff;
}

.page-fishing-games__call-to-action .page-fishing-games__text-block {
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-fishing-games__call-to-action .page-fishing-games__cta-button {
    margin-top: 30px;
    background: #ffffff;
    color: var(--primary-color);
}

.page-fishing-games__call-to-action .page-fishing-games__cta-button:hover {
    background: var(--secondary-color);
    color: #ffffff;
}

/* General responsive styles */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-fishing-games__section, .page-fishing-games__card, .page-fishing-games__container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.page-fishing-games__cta-button,
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games a[class*="button"],
.page-fishing-games a[class*="btn"] {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__cta-buttons,
.page-fishing-games__button-group,
.page-fishing-games__btn-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games__hero-image img {
        border-radius: 4px;
    }

    .page-fishing-games__hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-fishing-games__hero-content p {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        padding: 0 10px;
    }

    .page-fishing-games__cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .page-fishing-games__intro-section .page-fishing-games__cta-buttons,
    .page-fishing-games__game-types-section .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .page-fishing-games__feature-card,
    .page-fishing-games__game-card,
    .page-fishing-games__security-item,
    .page-fishing-games__blog-card {
        margin-bottom: 20px;
    }

    .page-fishing-games__feature-card h3,
    .page-fishing-games__game-card h3,
    .page-fishing-games__security-item h3,
    .page-fishing-games__blog-card h3 {
        font-size: 1.3rem;
    }

    .page-fishing-games__promo-list li {
        font-size: 0.95rem;
        padding: 15px;
    }

    details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
        padding: 15px;
    }

    .page-fishing-games__faq-qtext {
        font-size: 15px;
    }

    .page-fishing-games__faq-toggle {
        font-size: 20px;
    }

    details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
        padding: 0 15px 15px;
    }

    .page-fishing-games__call-to-action {
        padding: 60px 15px;
    }

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

    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games__cta-button,
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games a[class*="button"],
    .page-fishing-games a[class*="btn"] {
        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__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;
    }

    .page-fishing-games__cta-buttons {
        display: flex;
        flex-direction: column;
    }
}