:root {
    --primary-color: #C91F17;
    --secondary-color: #E53935;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    --card-bg: #D32F2F;
    --page-bg: #B71C1C;
    --text-main: #FFF5E1;
    --border-color: #F2B544;
    --glow-color: #FFCC66;
    --gold-color: #F4D34D;
    --deep-red: #7A0E0E;
    --light-bg-text: #333333; /* For sections with light background */
    --dark-bg-text: #FFF5E1; /* For sections with dark background */
}

body {
    background-color: var(--page-bg);
    color: var(--dark-bg-text); /* Default text color for dark body background */
}

/* Ensure default text color for main content area if it has a light background */
.page-fishing-games__light-bg {
    background-color: #ffffff; /* Or a light grey if needed */
    color: var(--light-bg-text);
}

.page-fishing-games__dark-section {
    background-color: var(--primary-color); /* Using main brand color for dark sections */
    color: var(--dark-bg-text);
}

.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, header offset handled by body */
    background-color: var(--page-bg); /* Match body background */
    color: var(--dark-bg-text);
}

.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%; /* Ensure full width on desktop for flex item */
}

.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 16px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

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

.page-fishing-games__hero-content h1 {
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 15px;
    color: var(--gold-color); /* Gold color for H1 */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-fishing-games__hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-main);
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: var(--light-bg-text); /* Black text for gold button */
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--border-color);
    max-width: 100%; /* Button responsive */
    box-sizing: border-box; /* Button responsive */
    white-space: normal; /* Button responsive */
    word-wrap: break-word; /* Button responsive */
}

.page-fishing-games__cta-button:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__cta-button--secondary {
    background: var(--deep-red);
    color: var(--text-main);
    border: 2px solid var(--primary-color);
    margin-left: 20px;
}

.page-fishing-games__cta-button--secondary:hover {
    background: var(--primary-color);
}

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

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--gold-color);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
    color: var(--primary-color);
    text-shadow: none;
}

.page-fishing-games__intro-section p,
.page-fishing-games__guide-section p,
.page-fishing-games__security-section p,
.page-fishing-games__conclusion-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.page-fishing-games__intro-section strong,
.page-fishing-games__guide-section strong,
.page-fishing-games__promo-section strong,
.page-fishing-games__security-section strong {
    color: var(--primary-color);
    font-weight: bold;
}

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

.page-fishing-games__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-fishing-games__image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

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

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

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-fishing-games__card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gold-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

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

.page-fishing-games__step-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e0e0e0;
    color: var(--light-bg-text);
}

.page-fishing-games__step-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--light-bg-text);
}

.page-fishing-games__btn-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-fishing-games__btn-link:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.page-fishing-games__tip-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 50px;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-fishing-games__tip-box img {
    flex: 1 1 300px;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-right: 30px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-fishing-games__tip-content {
    flex: 2 1 400px;
}

.page-fishing-games__tip-content h3 {
    font-size: 1.6rem;
    color: var(--gold-color);
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__tip-content ul {
    list-style: none;
    padding: 0;
}

.page-fishing-games__tip-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
}

.page-fishing-games__tip-content li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--gold-color);
}

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

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

.page-fishing-games__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__promo-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-fishing-games__promo-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--gold-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

.page-fishing-games__security-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e0e0e0;
    color: var(--light-bg-text);
}

.page-fishing-games__security-item img {
    width: 200px; /* Enforce minimum size */
    height: 200px; /* Enforce minimum size */
    margin-bottom: 15px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

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

.page-fishing-games__faq-section {
    background-color: var(--deep-red); /* Using Deep Red for FAQ section */
    color: var(--dark-bg-text);
}

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

details.page-fishing-games__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color); /* Gold border for FAQ items */
    overflow: hidden;
    background: var(--card-bg); /* Card BG for FAQ items */
    color: var(--text-main);
}
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: var(--primary-color); /* Primary color on hover */
}
.page-fishing-games__faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--gold-color); /* Gold color for FAQ question text */
}
.page-fishing-games__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}
details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 20px 20px;
    background: var(--deep-red); /* Deep Red for FAQ answer background */
    border-radius: 0 0 5px 5px;
    color: var(--text-main);
}
.page-fishing-games__faq-answer p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
}

.page-fishing-games__conclusion-section {
    padding-bottom: 60px;
    background-color: #ffffff; /* Light background for conclusion */
    color: var(--light-bg-text);
}

.page-fishing-games__conclusion-section h2 {
    color: var(--primary-color);
}

.page-fishing-games__conclusion-section p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Mobile responsive styles */
@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, 8vw, 2.5rem);
    }

    .page-fishing-games__hero-content p {
        font-size: 1rem;
    }

    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 16px;
        width: 100% !important; /* Button responsive */
        margin-left: 0;
    }

    .page-fishing-games__cta-button--secondary {
        margin-top: 15px; /* Separate buttons on mobile */
        margin-left: 0;
    }

    .page-fishing-games__cta-group {
        flex-direction: column;
        gap: 15px;
        width: 100% !important; /* Button container responsive */
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games__container {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

    .page-fishing-games__grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__promo-grid,
    .page-fishing-games__security-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__card,
    .page-fishing-games__step-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__security-item {
        padding: 20px;
    }

    .page-fishing-games__tip-box {
        flex-direction: column;
        margin-top: 30px;
        padding: 20px;
    }

    .page-fishing-games__tip-box img {
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-fishing-games__tip-content h3 {
        font-size: 1.4rem;
    }

    .page-fishing-games__tip-content li {
        font-size: 0.95rem;
    }

    details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
        padding: 15px;
    }
    .page-fishing-games__faq-qtext {
        font-size: 15px;
    }
    details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
        padding: 0 15px 15px;
    }

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