:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --login-color: #EA7C07;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-dark: #1a1a1a;
    --bg-light: #ffffff;
}

.page-fishing-games-tips {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--bg-dark); /* Body background from shared.css */
}

.page-fishing-games-tips__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px; /* Small top padding */
    text-align: center;
    color: var(--text-light);
    background-color: var(--bg-dark);
}

.page-fishing-games-tips__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

.page-fishing-games-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-fishing-games-tips__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-fishing-games-tips__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-fishing-games-tips__hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

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

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

.page-fishing-games-tips__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-fishing-games-tips__section-description {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-tips__why-i9999 {
    padding: 80px 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-fishing-games-tips__why-i9999 .page-fishing-games-tips__section-title,
.page-fishing-games-tips__why-i9999 .page-fishing-games-tips__feature-title {
    color: var(--primary-color);
}

.page-fishing-games-tips__why-i9999 .page-fishing-games-tips__section-description,
.page-fishing-games-tips__why-i9999 .page-fishing-games-tips__feature-text {
    color: var(--text-dark);
}

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

.page-fishing-games-tips__feature-item {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-fishing-games-tips__feature-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games-tips__feature-text {
    font-size: 1rem;
}

.page-fishing-games-tips__basic-tips,
.page-fishing-games-tips__advanced-strategies,
.page-fishing-games-tips__game-modes,
.page-fishing-games-tips__promotions,
.page-fishing-games-tips__faq-section,
.page-fishing-games-tips__cta-final {
    padding: 80px 0;
}

.page-fishing-games-tips__basic-tips,
.page-fishing-games-tips__game-modes,
.page-fishing-games-tips__faq-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-fishing-games-tips__basic-tips .page-fishing-games-tips__section-title,
.page-fishing-games-tips__game-modes .page-fishing-games-tips__section-title,
.page-fishing-games-tips__faq-section .page-fishing-games-tips__section-title {
    color: var(--primary-color);
}

.page-fishing-games-tips__basic-tips .page-fishing-games-tips__section-description,
.page-fishing-games-tips__basic-tips .page-fishing-games-tips__sub-title,
.page-fishing-games-tips__basic-tips p,
.page-fishing-games-tips__game-modes .page-fishing-games-tips__section-description,
.page-fishing-games-tips__game-modes .page-fishing-games-tips__game-title,
.page-fishing-games-tips__game-modes .page-fishing-games-tips__game-text,
.page-fishing-games-tips__faq-section .page-fishing-games-tips__section-description,
.page-fishing-games-tips__faq-section .page-fishing-games-tips__faq-qtext,
.page-fishing-games-tips__faq-section .page-fishing-games-tips__faq-answer p {
    color: var(--text-light);
}

.page-fishing-games-tips__advanced-strategies,
.page-fishing-games-tips__promotions,
.page-fishing-games-tips__cta-final {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-fishing-games-tips__advanced-strategies .page-fishing-games-tips__section-title,
.page-fishing-games-tips__advanced-strategies .page-fishing-games-tips__sub-title,
.page-fishing-games-tips__promotions .page-fishing-games-tips__section-title,
.page-fishing-games-tips__promotions .page-fishing-games-tips__promo-title,
.page-fishing-games-tips__cta-final .page-fishing-games-tips__section-title {
    color: var(--primary-color);
}

.page-fishing-games-tips__advanced-strategies .page-fishing-games-tips__section-description,
.page-fishing-games-tips__advanced-strategies p,
.page-fishing-games-tips__promotions .page-fishing-games-tips__section-description,
.page-fishing-games-tips__promotions .page-fishing-games-tips__promo-text,
.page-fishing-games-tips__cta-final .page-fishing-games-tips__section-description {
    color: var(--text-dark);
}

.page-fishing-games-tips__content-flex {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-fishing-games-tips__content-flex--reverse {
    flex-direction: row-reverse;
}

.page-fishing-games-tips__text-block {
    flex: 1;
}

.page-fishing-games-tips__image-block {
    flex: 1;
    min-width: 200px; /* Ensure minimum size */
}

.page-fishing-games-tips__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px;
}

.page-fishing-games-tips__sub-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-fishing-games-tips__game-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-tips__game-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games-tips__game-text {
    font-size: 1rem;
}

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

.page-fishing-games-tips__promo-card {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games-tips__promo-image {
    width: 100%;
    max-width: 600px; /* Constrain image width */
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px;
}

.page-fishing-games-tips__promo-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.page-fishing-games-tips__promo-text {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-fishing-games-tips__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-tips__faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-light);
}

.page-fishing-games-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    list-style: none; /* For <details> summary */
}

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

.page-fishing-games-tips__faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

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

.page-fishing-games-tips__faq-answer {
    padding: 20px;
    font-size: 1rem;
    color: var(--text-light);
}

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

.page-fishing-games-tips__cta-final {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-fishing-games-tips__cta-final .page-fishing-games-tips__section-title {
    color: var(--primary-color);
}

.page-fishing-games-tips__cta-final .page-fishing-games-tips__section-description {
    color: var(--text-dark);
}

.page-fishing-games-tips__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-fishing-games-tips__btn-primary,
.page-fishing-games-tips__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

.page-fishing-games-tips__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-fishing-games-tips__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-fishing-games-tips__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-fishing-games-tips__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-fishing-games-tips__center-button {
    display: block;
    margin: 40px auto 0;
    width: fit-content;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games-tips__hero-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }

    .page-fishing-games-tips__section-title {
        font-size: 2rem;
    }

    .page-fishing-games-tips__sub-title {
        font-size: 1.5rem;
    }

    .page-fishing-games-tips__content-flex {
        flex-direction: column;
        text-align: center;
    }

    .page-fishing-games-tips__content-flex--reverse {
        flex-direction: column;
    }

    .page-fishing-games-tips__image-block {
        order: -1; /* Image appears above text on mobile for reversed sections */
    }
}

@media (max-width: 768px) {
    .page-fishing-games-tips {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-fishing-games-tips__hero-section {
        padding: 10px 15px 40px;
    }

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

    .page-fishing-games-tips__hero-description {
        font-size: 1rem;
    }

    .page-fishing-games-tips__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games-tips__btn-primary,
    .page-fishing-games-tips__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-fishing-games-tips__container {
        padding: 0 15px;
    }

    .page-fishing-games-tips__section-title {
        font-size: 1.8rem;
    }

    .page-fishing-games-tips__section-description {
        font-size: 0.95rem;
    }

    .page-fishing-games-tips__basic-tips,
    .page-fishing-games-tips__advanced-strategies,
    .page-fishing-games-tips__game-modes,
    .page-fishing-games-tips__promotions,
    .page-fishing-games-tips__faq-section,
    .page-fishing-games-tips__cta-final {
        padding: 60px 0;
    }

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

    .page-fishing-games-tips__hero-image-wrapper,
    .page-fishing-games-tips__image-block,
    .page-fishing-games-tips__promo-image,
    .page-fishing-games-tips__game-card,
    .page-fishing-games-tips__feature-item,
    .page-fishing-games-tips__promo-card,
    .page-fishing-games-tips__faq-item,
    .page-fishing-games-tips__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden !important;
    }

    .page-fishing-games-tips__hero-image-wrapper,
    .page-fishing-games-tips__image-block,
    .page-fishing-games-tips__promo-image {
        padding: 0;
    }

    .page-fishing-games-tips__promo-grid,
    .page-fishing-games-tips__game-grid,
    .page-fishing-games-tips__features-grid {
        grid-template-columns: 1fr;
    }

    .page-fishing-games-tips__faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .page-fishing-games-tips__faq-answer {
        font-size: 0.95rem;
        padding: 15px;
    }
}