/* style/fishing-games-high-score-guide.css */
.page-fishing-games-high-score-guide {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0A2342; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-fishing-games-high-score-guide__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A2342 0%, #1A3A6A 100%); /* Dark blue gradient */
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.page-fishing-games-high-score-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.page-fishing-games-high-score-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-fishing-games-high-score-guide__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-fishing-games-high-score-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-high-score-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-fishing-games-high-score-guide__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-fishing-games-high-score-guide__hero-button:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-fishing-games-high-score-guide__section {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-fishing-games-high-score-guide__section:nth-of-type(even) {
    background-color: #1A3A6A; /* Slightly lighter dark blue for alternating sections */
}

.page-fishing-games-high-score-guide__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-fishing-games-high-score-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-fishing-games-high-score-guide h3 {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-fishing-games-high-score-guide p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-fishing-games-high-score-guide ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

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

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

.page-fishing-games-high-score-guide__feature-item {
    background-color: #1A3A6A; /* Lighter dark blue for feature cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-fishing-games-high-score-guide__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(30deg) brightness(120%); /* Gold tint for icons */
}

.page-fishing-games-high-score-guide__feature-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
}

.page-fishing-games-high-score-guide__feature-item p {
    font-size: 1em;
    color: #CCCCCC;
}

.page-fishing-games-high-score-guide__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .page-fishing-games-high-score-guide__content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-fishing-games-high-score-guide__content-grid.reverse-order {
        grid-template-columns: 1fr 1fr;
        direction: rtl; /* For image-text reversal */
    }
    .page-fishing-games-high-score-guide__content-grid.reverse-order > .page-fishing-games-high-score-guide__text-content {
        direction: ltr;
    }
    .page-fishing-games-high-score-guide__content-grid.reverse-order > .page-fishing-games-high-score-guide__image-wrapper {
        direction: ltr;
    }
}

.page-fishing-games-high-score-guide__image-wrapper {
    text-align: center;
}

.page-fishing-games-high-score-guide__section-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-high-score-guide__content-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-fishing-games-high-score-guide__content-block {
    background-color: #1A3A6A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-high-score-guide__content-block h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-top: 0;
}

.page-fishing-games-high-score-guide__content-block p {
    color: #CCCCCC;
    font-size: 1em;
}

.page-fishing-games-high-score-guide__call-to-action {
    text-align: center;
    margin-top: 50px;
}

.page-fishing-games-high-score-guide__button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    border: none;
    cursor: pointer;
}

.page-fishing-games-high-score-guide__button:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.page-fishing-games-high-score-guide__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-fishing-games-high-score-guide__button--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-2px);
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-fishing-games-high-score-guide__hero-title {
        font-size: 2.8em;
    }
    .page-fishing-games-high-score-guide__section-title {
        font-size: 2em;
    }
    .page-fishing-games-high-score-guide h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 767px) {
    .page-fishing-games-high-score-guide__hero {
        padding: 60px 15px;
    }
    .page-fishing-games-high-score-guide__hero-title {
        font-size: 2.2em;
    }
    .page-fishing-games-high-score-guide__hero-description {
        font-size: 1em;
    }
    .page-fishing-games-high-score-guide__section {
        padding: 40px 0;
    }
    .page-fishing-games-high-score-guide__section-title {
        font-size: 1.8em;
    }
    .page-fishing-games-high-score-guide h3 {
        font-size: 1.3em;
    }
    .page-fishing-games-high-score-guide p, .page-fishing-games-high-score-guide ul li {
        font-size: 0.95em;
    }
    .page-fishing-games-high-score-guide__features-grid, .page-fishing-games-high-score-guide__content-blocks {
        grid-template-columns: 1fr;
    }
    .page-fishing-games-high-score-guide__content-grid.reverse-order {
        direction: ltr; /* Reset for mobile */
    }
}