/* style/game-guides-fishing-high-score-tips.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --button-register-bg: #C30808;
    --button-register-text: #FFFF00;
    --button-login-bg: #C30808;
    --button-login-text: #FFFF00;
    --light-bg-color: #ffffff;
    --dark-bg-color: #017439;
}

.page-game-guides-fishing-high-score-tips {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light backgrounds */
    background-color: var(--light-bg-color);
}

.page-game-guides-fishing-high-score-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-game-guides-fishing-high-score-tips__hero-section {
    background-color: var(--dark-bg-color);
    color: var(--text-light);
    padding: 80px 0;
    padding-top: var(--header-offset, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides-fishing-high-score-tips__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-game-guides-fishing-high-score-tips__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-guides-fishing-high-score-tips__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-game-guides-fishing-high-score-tips__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-game-guides-fishing-high-score-tips__btn-primary,
.page-game-guides-fishing-high-score-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, transform 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-game-guides-fishing-high-score-tips__btn-primary {
    background-color: var(--button-register-bg);
    color: var(--button-register-text);
    border: 2px solid var(--button-register-bg);
}

.page-game-guides-fishing-high-score-tips__btn-primary:hover {
    background-color: #a80707;
    transform: translateY(-3px);
}

.page-game-guides-fishing-high-score-tips__btn-secondary {
    background-color: transparent;
    color: var(--button-login-text);
    border: 2px solid var(--button-login-bg);
}

.page-game-guides-fishing-high-score-tips__btn-secondary:hover {
    background-color: var(--button-login-bg);
    color: var(--text-light);
    transform: translateY(-3px);
}

.page-game-guides-fishing-high-score-tips__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    overflow: hidden;
}

.page-game-guides-fishing-high-score-tips__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Sections */
.page-game-guides-fishing-high-score-tips__content-section {
    padding: 60px 0;
}

.page-game-guides-fishing-high-score-tips__light-bg {
    background-color: var(--light-bg-color);
    color: var(--text-dark);
}

.page-game-guides-fishing-high-score-tips__dark-bg {
    background-color: var(--dark-bg-color);
    color: var(--text-light);
}

.page-game-guides-fishing-high-score-tips__section-title {
    font-size: 2.5em;
    color: inherit;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.page-game-guides-fishing-high-score-tips__sub-title {
    font-size: 1.8em;
    color: inherit;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-guides-fishing-high-score-tips__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: inherit;
}

.page-game-guides-fishing-high-score-tips__image-full-width {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-fishing-high-score-tips__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-game-guides-fishing-high-score-tips__list-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: inherit;
}

/* FAQ Section */
.page-game-guides-fishing-high-score-tips__faq-list {
    margin-top: 40px;
}

.page-game-guides-fishing-high-score-tips__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-game-guides-fishing-high-score-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-game-guides-fishing-high-score-tips__faq-question:hover {
    background-color: #f0f0f0;
}

.page-game-guides-fishing-high-score-tips__faq-title {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-dark);
    margin: 0;
}

.page-game-guides-fishing-high-score-tips__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-game-guides-fishing-high-score-tips__faq-item.active .page-game-guides-fishing-high-score-tips__faq-toggle {
    transform: rotate(45deg);
}

.page-game-guides-fishing-high-score-tips__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-dark);
}

.page-game-guides-fishing-high-score-tips__faq-item.active .page-game-guides-fishing-high-score-tips__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 20px;
}

/* CTA Section */
.page-game-guides-fishing-high-score-tips__cta-section {
    background-color: var(--dark-bg-color);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.page-game-guides-fishing-high-score-tips__flex-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-game-guides-fishing-high-score-tips__cta-content {
    max-width: 800px;
}

.page-game-guides-fishing-high-score-tips__cta-image-wrapper {
    width: 100%;
    max-width: 800px;
}

.page-game-guides-fishing-high-score-tips__cta-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-guides-fishing-high-score-tips__hero-title {
        font-size: 3em;
    }
    .page-game-guides-fishing-high-score-tips__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-game-guides-fishing-high-score-tips {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-game-guides-fishing-high-score-tips__hero-section {
        padding: 60px 0;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-game-guides-fishing-high-score-tips__hero-title {
        font-size: 2.2em;
    }
    .page-game-guides-fishing-high-score-tips__hero-description {
        font-size: 1em;
    }
    .page-game-guides-fishing-high-score-tips__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-game-guides-fishing-high-score-tips__btn-primary,
    .page-game-guides-fishing-high-score-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-game-guides-fishing-high-score-tips__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-game-guides-fishing-high-score-tips__content-section,
    .page-game-guides-fishing-high-score-tips__cta-section {
        padding: 40px 0;
    }
    .page-game-guides-fishing-high-score-tips__section-title {
        font-size: 1.8em;
    }
    .page-game-guides-fishing-high-score-tips__sub-title {
        font-size: 1.5em;
    }
    .page-game-guides-fishing-high-score-tips__paragraph,
    .page-game-guides-fishing-high-score-tips__list-item {
        font-size: 1em;
    }
    .page-game-guides-fishing-high-score-tips img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-game-guides-fishing-high-score-tips__image-full-width,
    .page-game-guides-fishing-high-score-tips__hero-image-wrapper,
    .page-game-guides-fishing-high-score-tips__cta-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-game-guides-fishing-high-score-tips__faq-answer {
        padding: 0 15px;
    }
    .page-game-guides-fishing-high-score-tips__faq-item.active .page-game-guides-fishing-high-score-tips__faq-answer {
        padding: 15px 15px;
    }
    .page-game-guides-fishing-high-score-tips__faq-question {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-guides-fishing-high-score-tips__hero-title {
        font-size: 1.8em;
    }
    .page-game-guides-fishing-high-score-tips__section-title {
        font-size: 1.5em;
    }
    .page-game-guides-fishing-high-score-tips__sub-title {
        font-size: 1.3em;
    }
}