/* style/fishing-games-guide.css */
.page-fishing-games-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: var(--bg-dark); /* Assume body is dark from shared.css */
}

.page-fishing-games-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-fishing-games-guide__section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary color for titles */
}

.page-fishing-games-guide__section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

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

.page-fishing-games-guide__light-bg {
    background-color: #f8f9fa;
    color: #333333;
}

/* Hero Section */
.page-fishing-games-guide__hero-section {
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Apply offset if shared doesn't provide */
}

.page-fishing-games-guide__hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    flex-wrap: wrap;
}

.page-fishing-games-guide__hero-content {
    flex: 1;
    min-width: 400px;
    text-align: left;
}

.page-fishing-games-guide__hero-title {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-fishing-games-guide__hero-description {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-fishing-games-guide__hero-image-wrapper {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fishing-games-guide__hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-guide__hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.page-fishing-games-guide__btn-primary,
.page-fishing-games-guide__btn-secondary,
.page-fishing-games-guide__btn-text {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games-guide__btn-primary {
    background-color: #CC0000;
    color: #ffffff;
    border: 2px solid #CC0000;
}

.page-fishing-games-guide__btn-primary:hover {
    background-color: #ff3333;
    border-color: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(204, 0, 0, 0.4);
}

.page-fishing-games-guide__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-fishing-games-guide__btn-secondary:hover {
    background-color: #FFD700;
    color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-fishing-games-guide__btn-text {
    background: none;
    border: none;
    padding: 0;
    color: #CC0000;
    font-weight: bold;
    text-decoration: underline;
    font-size: 16px;
}

.page-fishing-games-guide__btn-text:hover {
    color: #FFD700;
}

.page-fishing-games-guide__text-link {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-fishing-games-guide__text-link:hover {
    color: #CC0000;
}

/* Benefits Section */
.page-fishing-games-guide__benefits-section {
    padding: 80px 0;
}

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

.page-fishing-games-guide__benefit-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-guide__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-guide__benefit-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-fishing-games-guide__benefit-heading {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #CC0000;
}

.page-fishing-games-guide__benefit-item p {
    font-size: 16px;
    color: #555555;
}

/* Game Types Section */
.page-fishing-games-guide__game-types-section {
    padding: 80px 0;
}

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

.page-fishing-games-guide__game-type-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-guide__game-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-guide__game-type-card img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-fishing-games-guide__game-type-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFD700;
}

.page-fishing-games-guide__game-type-card p {
    font-size: 16px;
    color: #f0f0f0;
}

/* Guide Section */
.page-fishing-games-guide__guide-section {
    padding: 80px 0;
}

.page-fishing-games-guide__guide-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.page-fishing-games-guide__step-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333333;
}

.page-fishing-games-guide__step-title {
    font-size: 28px;
    font-weight: bold;
    color: #CC0000;
    margin-bottom: 20px;
}

.page-fishing-games-guide__step-item p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555555;
}

.page-fishing-games-guide__step-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

/* Strategy Section */
.page-fishing-games-guide__strategy-section {
    padding: 80px 0;
}

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

.page-fishing-games-guide__strategy-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games-guide__strategy-title {
    font-size: 22px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-fishing-games-guide__strategy-card p {
    font-size: 16px;
    color: #f0f0f0;
}

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

/* Tips Section */
.page-fishing-games-guide__tips-section {
    padding: 80px 0;
}

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

.page-fishing-games-guide__tip-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-guide__tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-guide__tip-title {
    font-size: 22px;
    font-weight: bold;
    color: #CC0000;
    margin-bottom: 15px;
}

.page-fishing-games-guide__tip-item p {
    font-size: 16px;
    color: #555555;
}

/* Promotions Section */
.page-fishing-games-guide__promotions-section {
    padding: 80px 0;
}

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

.page-fishing-games-guide__promotion-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games-guide__promotion-card img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-fishing-games-guide__promotion-title {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-fishing-games-guide__promotion-card p {
    font-size: 16px;
    color: #f0f0f0;
}

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

/* FAQ Section */
.page-fishing-games-guide__faq-section {
    padding: 80px 0;
}

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

.page-fishing-games-guide__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-fishing-games-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-fishing-games-guide__faq-item.active .page-fishing-games-guide__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #ffffff;
    border-radius: 0 0 5px 5px;
    color: #333333;
}

.page-fishing-games-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #CC0000;
    border: 1px solid #CC0000;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-fishing-games-guide__faq-question:hover {
    background: #ff3333;
    border-color: #ff3333;
}

.page-fishing-games-guide__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: #ffffff;
}

.page-fishing-games-guide__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-fishing-games-guide__faq-item.active .page-fishing-games-guide__faq-toggle {
    color: #FFD700;
}

/* Conclusion Section */
.page-fishing-games-guide__conclusion-section {
    padding: 80px 0;
    text-align: center;
}

.page-fishing-games-guide__conclusion-section .page-fishing-games-guide__section-subtitle {
    margin-bottom: 30px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games-guide__hero-section {
        padding: 60px 0;
    }
    .page-fishing-games-guide__hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    .page-fishing-games-guide__hero-content {
        min-width: unset;
        text-align: center;
    }
    .page-fishing-games-guide__hero-image-wrapper {
        min-width: unset;
        margin-top: 30px;
    }
    .page-fishing-games-guide__hero-buttons {
        justify-content: center;
    }
    .page-fishing-games-guide__section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-guide {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-fishing-games-guide__hero-section {
        padding: 40px 0 !important;
        padding-top: var(--header-offset, 120px) !important; /* Ensure offset is applied */
    }
    .page-fishing-games-guide__hero-container {
        padding: 0 15px;
        gap: 20px;
    }
    .page-fishing-games-guide__hero-title {
        font-size: 32px;
    }
    .page-fishing-games-guide__hero-description {
        font-size: 16px;
    }
    .page-fishing-games-guide__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games-guide__btn-primary,
    .page-fishing-games-guide__btn-secondary {
        padding: 12px 20px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-fishing-games-guide__section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .page-fishing-games-guide__section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-fishing-games-guide__benefits-section,
    .page-fishing-games-guide__game-types-section,
    .page-fishing-games-guide__guide-section,
    .page-fishing-games-guide__strategy-section,
    .page-fishing-games-guide__tips-section,
    .page-fishing-games-guide__promotions-section,
    .page-fishing-games-guide__faq-section,
    .page-fishing-games-guide__conclusion-section {
        padding: 40px 0;
    }
    .page-fishing-games-guide__container {
        padding: 0 15px;
    }
    .page-fishing-games-guide__benefit-item,
    .page-fishing-games-guide__game-type-card,
    .page-fishing-games-guide__strategy-card,
    .page-fishing-games-guide__tip-item,
    .page-fishing-games-guide__promotion-card,
    .page-fishing-games-guide__step-item {
        padding: 25px;
    }
    .page-fishing-games-guide__benefit-heading,
    .page-fishing-games-guide__game-type-title,
    .page-fishing-games-guide__strategy-title,
    .page-fishing-games-guide__tip-title {
        font-size: 20px;
    }
    .page-fishing-games-guide__guide-steps {
        gap: 30px;
    }
    .page-fishing-games-guide__step-title {
        font-size: 24px;
    }
    .page-fishing-games-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-fishing-games-guide__faq-question {
        padding: 15px;
    }
    .page-fishing-games-guide__faq-question h3 {
        font-size: 15px;
        width: calc(100% - 40px);
    }
    .page-fishing-games-guide__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-fishing-games-guide__faq-answer {
        padding: 0 15px;
    }
    .page-fishing-games-guide__faq-item.active .page-fishing-games-guide__faq-answer {
        padding: 15px !important;
    }
}