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

/* Variables for consistency */
:root {
    --page-fishing-primary-color: #003366;
    --page-fishing-secondary-color: #FFCC00;
    --page-fishing-text-light: #ffffff;
    --page-fishing-text-dark: #333333;
    --page-fishing-bg-alt: #f0f4f8; /* Lighter shade for alternating sections */
    --page-fishing-link-hover: #e6b800;
}

.page-game-guides-fishing-high-score {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-fishing-text-dark);
}

.page-game-guides-fishing-high-score__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-guides-fishing-high-score__content-block {
    padding: 60px 20px;
}

.page-game-guides-fishing-high-score__bg-alt {
    background-color: var(--page-fishing-bg-alt);
}

.page-game-guides-fishing-high-score__bg-dark {
    background-color: var(--page-fishing-primary-color);
    color: var(--page-fishing-text-light);
}

.page-game-guides-fishing-high-score__hero-section {
    background: linear-gradient(135deg, var(--page-fishing-primary-color) 0%, #004d99 100%); /* Darker blue gradient */
    color: var(--page-fishing-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides-fishing-high-score__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    animation: page-fishing-bubble-float 15s infinite linear;
}

.page-game-guides-fishing-high-score__hero-section::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 204, 0, 0.15);
    border-radius: 50%;
    animation: page-fishing-bubble-float 18s infinite reverse linear;
}

@keyframes page-fishing-bubble-float {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(20px, -20px) scale(1.1); opacity: 1; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}

.page-game-guides-fishing-high-score__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-fishing-secondary-color); /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-guides-fishing-high-score__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-game-guides-fishing-high-score__section-title--light {
    color: var(--page-fishing-text-light);
}

.page-game-guides-fishing-high-score__section-title--light::after {
    background-color: var(--page-fishing-text-light);
}

.page-game-guides-fishing-high-score__sub-section-title {
    font-size: 1.8em;
    color: var(--page-fishing-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.page-game-guides-fishing-high-score__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-game-guides-fishing-high-score__list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
}

.page-game-guides-fishing-high-score__list--circle li::before {
    content: '\2022'; /* Unicode for bullet point */
    color: var(--page-fishing-secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-game-guides-fishing-high-score__list--check li::before {
    content: '\2713'; /* Unicode for checkmark */
    color: #28a745; /* Green for success */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-game-guides-fishing-high-score__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    font-size: 1.1em;
    cursor: pointer;
}

.page-game-guides-fishing-high-score__btn--primary {
    background-color: var(--page-fishing-secondary-color);
    color: var(--page-fishing-primary-color);
    border: 2px solid var(--page-fishing-secondary-color);
}

.page-game-guides-fishing-high-score__btn--primary:hover {
    background-color: var(--page-fishing-link-hover);
    transform: translateY(-3px);
    border-color: var(--page-fishing-link-hover);
}

.page-game-guides-fishing-high-score__btn--secondary {
    background-color: transparent;
    color: var(--page-fishing-primary-color);
    border: 2px solid var(--page-fishing-primary-color);
    margin-left: 20px;
}

.page-game-guides-fishing-high-score__btn--secondary:hover {
    background-color: var(--page-fishing-primary-color);
    color: var(--page-fishing-text-light);
    transform: translateY(-3px);
}

.page-game-guides-fishing-high-score__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-game-guides-fishing-high-score__link {
    color: var(--page-fishing-primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-game-guides-fishing-high-score__link:hover {
    text-decoration: underline;
    color: var(--page-fishing-secondary-color);
}

.page-game-guides-fishing-high-score__text--light {
    color: var(--page-fishing-text-light);
}

.page-game-guides-fishing-high-score__small-text {
    font-size: 0.9em;
    margin-top: 20px;
}

.page-game-guides-fishing-high-score__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-fishing-high-score__image-small {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-game-guides-fishing-high-score__grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-game-guides-fishing-high-score__grid-item {
    background-color: var(--page-fishing-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-game-guides-fishing-high-score__grid-item p {
    margin-top: 15px;
}

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

.page-game-guides-fishing-high-score__strategy-card {
    background-color: var(--page-fishing-text-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-fishing-high-score__strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-game-guides-fishing-high-score__image-card {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-guides-fishing-high-score__strategy-card .page-game-guides-fishing-high-score__sub-section-title {
    font-size: 1.4em;
    margin-top: 0;
    text-align: center;
    color: var(--page-fishing-primary-color);
}

.page-game-guides-fishing-high-score__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-guides-fishing-high-score__feature-card {
    background-color: var(--page-fishing-text-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-game-guides-fishing-high-score__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.page-game-guides-fishing-high-score__feature-title {
    font-size: 1.5em;
    color: var(--page-fishing-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-guides-fishing-high-score__cta-section {
    text-align: center;
    padding: 80px 20px;
}

.page-game-guides-fishing-high-score__cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-guides-fishing-high-score__hero-title {
        font-size: 2.8em;
    }
    .page-game-guides-fishing-high-score__section-title {
        font-size: 2em;
    }
    .page-game-guides-fishing-high-score__grid-2-cols {
        grid-template-columns: 1fr;
    }
    .page-game-guides-fishing-high-score__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-game-guides-fishing-high-score__hero-title {
        font-size: 2.2em;
    }
    .page-game-guides-fishing-high-score__hero-subtitle {
        font-size: 1.2em;
    }
    .page-game-guides-fishing-high-score__section-title {
        font-size: 1.8em;
    }
    .page-game-guides-fishing-high-score__sub-section-title {
        font-size: 1.5em;
    }
    .page-game-guides-fishing-high-score__content-block {
        padding: 40px 15px;
    }
    .page-game-guides-fishing-high-score__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-guides-fishing-high-score__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-game-guides-fishing-high-score__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-game-guides-fishing-high-score__btn--secondary {
        margin-top: 15px;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-game-guides-fishing-high-score__hero-title {
        font-size: 1.8em;
    }
    .page-game-guides-fishing-high-score__section-title {
        font-size: 1.6em;
    }
    .page-game-guides-fishing-high-score__hero-section {
        padding: 80px 0;
    }
    .page-game-guides-fishing-high-score__sub-section-title {
        font-size: 1.3em;
    }
}