/* style/fishing-games-strategy-tips.css */
:root {
    --primary-color: #FFD700;
    --secondary-color: #8B0000;
    --text-light: #ffffff;
    --text-dark: #333333;
    --card-bg-dark: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.15);
}

.page-fishing-games-strategy-tips {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Body background is dark, so text should be light */
    background-color: var(--dark-bg); /* Inherited from shared.css */
}

.page-fishing-games-strategy-tips__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px);
    box-sizing: border-box;
}

.page-fishing-games-strategy-tips__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-fishing-games-strategy-tips__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-fishing-games-strategy-tips__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-fishing-games-strategy-tips__hero-title {
    font-size: 3.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games-strategy-tips__hero-description {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.page-fishing-games-strategy-tips__btn-primary,
.page-fishing-games-strategy-tips__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

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

.page-fishing-games-strategy-tips__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

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

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

.page-fishing-games-strategy-tips__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--dark-bg); /* Ensure content area uses dark background */
}

.page-fishing-games-strategy-tips__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games-strategy-tips__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-fishing-games-strategy-tips__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-fishing-games-strategy-tips__text-block p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-fishing-games-strategy-tips__text-block ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-fishing-games-strategy-tips__text-block li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--text-light);
}

.page-fishing-games-strategy-tips__inline-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-fishing-games-strategy-tips__inline-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.page-fishing-games-strategy-tips__game-card,
.page-fishing-games-strategy-tips__strategy-card {
    background-color: var(--card-bg-dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.page-fishing-games-strategy-tips__game-card:hover,
.page-fishing-games-strategy-tips__strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-strategy-tips__game-image,
.page-fishing-games-strategy-tips__strategy-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-fishing-games-strategy-tips__game-title,
.page-fishing-games-strategy-tips__strategy-title {
    font-size: 1.5em;
    color: var(--primary-color);
    padding: 15px 20px 0;
    margin-bottom: 10px;
}

.page-fishing-games-strategy-tips__game-title a,
.page-fishing-games-strategy-tips__card-link {
    color: var(--primary-color);
    text-decoration: none;
}

.page-fishing-games-strategy-tips__game-title a:hover,
.page-fishing-games-strategy-tips__card-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-fishing-games-strategy-tips__game-description,
.page-fishing-games-strategy-tips__strategy-description {
    font-size: 1em;
    padding: 0 20px 20px;
    color: var(--text-light);
    flex-grow: 1;
}

.page-fishing-games-strategy-tips__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy-tips__dark-bg {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 20px;
    margin-top: 60px;
    border-radius: 10px;
}

.page-fishing-games-strategy-tips__dark-bg .page-fishing-games-strategy-tips__section-title,
.page-fishing-games-strategy-tips__dark-bg .page-fishing-games-strategy-tips__sub-title {
    color: var(--text-light);
}

.page-fishing-games-strategy-tips__dark-bg .page-fishing-games-strategy-tips__section-title::after {
    background-color: var(--primary-color);
}

.page-fishing-games-strategy-tips__faq-list {
    margin-top: 40px;
}

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

.page-fishing-games-strategy-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.2em;
    color: var(--primary-color);
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

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

.page-fishing-games-strategy-tips__faq-item.active .page-fishing-games-strategy-tips__faq-toggle {
    transform: rotate(0deg); /*  to "-" is handled by JS textContent */
}

.page-fishing-games-strategy-tips__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
}

.page-fishing-games-strategy-tips__faq-item.active .page-fishing-games-strategy-tips__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-fishing-games-strategy-tips__faq-answer p {
    margin-bottom: 15px;
}

.page-fishing-games-strategy-tips__mt-20 {
    margin-top: 20px;
}

.page-fishing-games-strategy-tips__mt-40 {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games-strategy-tips__hero-title {
        font-size: 2.8em;
    }
    .page-fishing-games-strategy-tips__hero-description {
        font-size: 1.1em;
    }
    .page-fishing-games-strategy-tips__section-title {
        font-size: 2em;
    }
    .page-fishing-games-strategy-tips__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-strategy-tips__hero-section {
        height: 500px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-fishing-games-strategy-tips__hero-title {
        font-size: 2em;
    }
    .page-fishing-games-strategy-tips__hero-description {
        font-size: 1em;
    }
    .page-fishing-games-strategy-tips__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .page-fishing-games-strategy-tips__btn-primary,
    .page-fishing-games-strategy-tips__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games-strategy-tips__content-area {
        padding: 40px 15px;
    }
    .page-fishing-games-strategy-tips__section-title {
        font-size: 1.8em;
    }
    .page-fishing-games-strategy-tips__sub-title {
        font-size: 1.4em;
    }
    .page-fishing-games-strategy-tips__text-block p,
    .page-fishing-games-strategy-tips__text-block li {
        font-size: 0.95em;
    }
    .page-fishing-games-strategy-tips__game-grid,
    .page-fishing-games-strategy-tips__strategy-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile image responsiveness */
    .page-fishing-games-strategy-tips img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games-strategy-tips__section,
    .page-fishing-games-strategy-tips__card,
    .page-fishing-games-strategy-tips__container,
    .page-fishing-games-strategy-tips__game-card,
    .page-fishing-games-strategy-tips__strategy-card,
    .page-fishing-games-strategy-tips__faq-item,
    .page-fishing-games-strategy-tips__text-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Ensure no overflow */
    }
    .page-fishing-games-strategy-tips__hero-content {
        padding: 10px;
    }
    .page-fishing-games-strategy-tips__dark-bg {
        padding: 40px 15px;
    }
    .page-fishing-games-strategy-tips__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-fishing-games-strategy-tips__faq-answer {
        padding: 0 20px;
    }
    .page-fishing-games-strategy-tips__faq-item.active .page-fishing-games-strategy-tips__faq-answer {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-strategy-tips__hero-title {
        font-size: 1.8em;
    }
    .page-fishing-games-strategy-tips__hero-description {
        font-size: 0.9em;
    }
    .page-fishing-games-strategy-tips__btn-primary,
    .page-fishing-games-strategy-tips__btn-secondary {
        font-size: 0.9em;
        padding: 10px 15px;
    }
    .page-fishing-games-strategy-tips__section-title {
        font-size: 1.6em;
    }
    .page-fishing-games-strategy-tips__sub-title {
        font-size: 1.2em;
    }
    .page-fishing-games-strategy-tips__faq-question {
        font-size: 1em;
    }
}