/* style/fishing-games-high-score-tips.css */

.page-fishing-games-high-score-tips {
    font-family: 'Arial', sans-serif;
    color: #E2E8F0; /* Light text on dark background */
    background-color: #1A202C;
    line-height: 1.6;
}

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

.page-fishing-games-high-score-tips__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3A404C 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-fishing-games-high-score-tips__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-high-score-tips__hero-subtitle {
    font-size: 1.3em;
    color: #CBD5E0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-fishing-games-high-score-tips__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-fishing-games-high-score-tips__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-fishing-games-high-score-tips__content-section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-fishing-games-high-score-tips__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-fishing-games-high-score-tips__sub-section-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-fishing-games-high-score-tips__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E2E8F0;
}

.page-fishing-games-high-score-tips__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E2E8F0;
}

.page-fishing-games-high-score-tips__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-fishing-games-high-score-tips__list li strong {
    color: #FFD700;
}

.page-fishing-games-high-score-tips__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-fishing-games-high-score-tips__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-fishing-games-high-score-tips__image:hover {
    transform: scale(1.02);
}

.page-fishing-games-high-score-tips__image-caption {
    font-size: 0.9em;
    color: #A0AEC0;
    margin-top: 15px;
}

.page-fishing-games-high-score-tips__cta-banner {
    background-color: #2D3748;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-high-score-tips__cta-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-fishing-games-high-score-tips__cta-text {
    font-size: 1.2em;
    color: #E2E8F0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-high-score-tips__cta-button--large {
    padding: 18px 35px;
    font-size: 1.3em;
    margin: 0 10px 20px;
}

.page-fishing-games-high-score-tips__cta-button--secondary {
    background-color: #4A5568;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-fishing-games-high-score-tips__cta-button--secondary:hover {
    background-color: #3A404C;
    color: #FFD700;
    transform: translateY(-3px);
}

.page-fishing-games-high-score-tips__related-links {
    padding: 60px 0;
    background-color: #2D3748;
    text-align: center;
}

.page-fishing-games-high-score-tips__links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-fishing-games-high-score-tips__link-item {
    display: block;
    background-color: #1A202C;
    color: #FFD700;
    padding: 25px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-high-score-tips__link-item:hover {
    background-color: #3A404C;
    transform: translateY(-5px);
    color: #FFD700;
}

.page-fishing-games-high-score-tips .highlight {
    color: #FFD700;
}

.page-fishing-games-high-score-tips .keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-fishing-games-high-score-tips__hero-title {
        font-size: 2.5em;
    }

    .page-fishing-games-high-score-tips__hero-subtitle,
    .page-fishing-games-high-score-tips__paragraph,
    .page-fishing-games-high-score-tips__list li {
        font-size: 1em;
    }

    .page-fishing-games-high-score-tips__section-title {
        font-size: 2em;
    }

    .page-fishing-games-high-score-tips__sub-section-title {
        font-size: 1.5em;
    }

    .page-fishing-games-high-score-tips__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-fishing-games-high-score-tips__cta-button--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }

    .page-fishing-games-high-score-tips__cta-banner {
        padding: 40px 20px;
    }

    .page-fishing-games-high-score-tips__cta-title {
        font-size: 1.8em;
    }

    .page-fishing-games-high-score-tips__cta-text {
        font-size: 1.1em;
    }

    .page-fishing-games-high-score-tips__links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-high-score-tips__hero-title {
        font-size: 2em;
    }

    .page-fishing-games-high-score-tips__hero-subtitle {
        font-size: 0.9em;
    }

    .page-fishing-games-high-score-tips__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-fishing-games-high-score-tips__cta-button--large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-fishing-games-high-score-tips__cta-banner .page-fishing-games-high-score-tips__cta-button {
        margin: 5px;
        width: calc(100% - 10px);
        display: block;
    }
}