/* style/resources-fishing-games-high-score-guide.css */

:root {
    --page-resources-fishing-games-high-score-guide-primary-color: #0A2342;
    --page-resources-fishing-games-high-score-guide-secondary-color: #FFD700;
    --page-resources-fishing-games-high-score-guide-text-light: #FFFFFF;
    --page-resources-fishing-games-high-score-guide-text-dark: #333333;
    --page-resources-fishing-games-high-score-guide-background-light: #F8F8F8;
    --page-resources-fishing-games-high-score-guide-border-color: #E0E0E0;
}

.page-resources-fishing-games-high-score-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-fishing-games-high-score-guide__hero-section {
    background: linear-gradient(135deg, var(--page-resources-fishing-games-high-score-guide-primary-color), #1A3F6C);
    color: var(--page-resources-fishing-games-high-score-guide-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-fishing-games-high-score-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:fishing_game,underwater,abstract]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-resources-fishing-games-high-score-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--page-resources-fishing-games-high-score-guide-secondary-color);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-fishing-games-high-score-guide__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-resources-fishing-games-high-score-guide__content-section {
    padding: 60px 0;
    background-color: var(--page-resources-fishing-games-high-score-guide-background-light);
    color: var(--page-resources-fishing-games-high-score-guide-text-dark);
}

.page-resources-fishing-games-high-score-guide__text-block {
    background-color: var(--page-resources-fishing-games-high-score-guide-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    line-height: 1.7;
}

.page-resources-fishing-games-high-score-guide__section-title {
    font-size: 2.2em;
    color: var(--page-resources-fishing-games-high-score-guide-primary-color);
    margin-bottom: 25px;
    border-bottom: 3px solid var(--page-resources-fishing-games-high-score-guide-secondary-color);
    padding-bottom: 10px;
    font-weight: 600;
}

.page-resources-fishing-games-high-score-guide__subsection-title {
    font-size: 1.8em;
    color: var(--page-resources-fishing-games-high-score-guide-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-resources-fishing-games-high-score-guide__text-block p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-resources-fishing-games-high-score-guide__text-block ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-resources-fishing-games-high-score-guide__text-block li {
    margin-bottom: 8px;
    font-size: 1.1em;
}

.page-resources-fishing-games-high-score-guide__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

.page-resources-fishing-games-high-score-guide__image:hover {
    transform: translateY(-5px);
}

.page-resources-fishing-games-high-score-guide__link {
    color: var(--page-resources-fishing-games-high-score-guide-primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-fishing-games-high-score-guide__link:hover {
    color: var(--page-resources-fishing-games-high-score-guide-secondary-color);
    text-decoration: underline;
}

.page-resources-fishing-games-high-score-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    margin: 10px;
}

.page-resources-fishing-games-high-score-guide__btn--primary {
    background-color: var(--page-resources-fishing-games-high-score-guide-secondary-color);
    color: var(--page-resources-fishing-games-high-score-guide-primary-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-fishing-games-high-score-guide__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-fishing-games-high-score-guide__btn--secondary {
    background-color: var(--page-resources-fishing-games-high-score-guide-primary-color);
    color: var(--page-resources-fishing-games-high-score-guide-text-light);
    border: 2px solid var(--page-resources-fishing-games-high-score-guide-secondary-color);
    box-shadow: 0 5px 15px rgba(10, 35, 66, 0.3);
}

.page-resources-fishing-games-high-score-guide__btn--secondary:hover {
    background-color: #1A3F6C;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 35, 66, 0.5);
}

.page-resources-fishing-games-high-score-guide__btn--tertiary {
    background-color: var(--page-resources-fishing-games-high-score-guide-text-light);
    color: var(--page-resources-fishing-games-high-score-guide-primary-color);
    border: 2px solid var(--page-resources-fishing-games-high-score-guide-primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-fishing-games-high-score-guide__btn--tertiary:hover {
    background-color: var(--page-resources-fishing-games-high-score-guide-background-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-fishing-games-high-score-guide__cta-block {
    text-align: center;
    background-color: var(--page-resources-fishing-games-high-score-guide-primary-color);
    color: var(--page-resources-fishing-games-high-score-guide-text-light);
    padding: 50px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-games-high-score-guide__cta-block .page-resources-fishing-games-high-score-guide__section-title {
    color: var(--page-resources-fishing-games-high-score-guide-secondary-color);
    border-bottom-color: var(--page-resources-fishing-games-high-score-guide-text-light);
}

.page-resources-fishing-games-high-score-guide__cta-block p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-resources-fishing-games-high-score-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-fishing-games-high-score-guide__hero-title {
        font-size: 2.8em;
    }
    .page-resources-fishing-games-high-score-guide__hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources-fishing-games-high-score-guide__section-title {
        font-size: 2em;
    }
    .page-resources-fishing-games-high-score-guide__subsection-title {
        font-size: 1.6em;
    }
    .page-resources-fishing-games-high-score-guide__text-block {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-resources-fishing-games-high-score-guide__hero-title {
        font-size: 2.2em;
    }
    .page-resources-fishing-games-high-score-guide__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-fishing-games-high-score-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-fishing-games-high-score-guide__subsection-title {
        font-size: 1.4em;
    }
    .page-resources-fishing-games-high-score-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-fishing-games-high-score-guide__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-resources-fishing-games-high-score-guide__cta-block {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .page-resources-fishing-games-high-score-guide__hero-title {
        font-size: 1.8em;
    }
    .page-resources-fishing-games-high-score-guide__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-fishing-games-high-score-guide__section-title {
        font-size: 1.6em;
    }
    .page-resources-fishing-games-high-score-guide__subsection-title {
        font-size: 1.2em;
    }
    .page-resources-fishing-games-high-score-guide__btn {
        width: 90%;
        max-width: 300px;
    }
    .page-resources-fishing-games-high-score-guide__text-block {
        padding: 20px;
    }
}