/* style/fishing-games-boss-strategies.css */
.page-fishing-games-boss-strategies {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light text for general content on dark backgrounds */
    line-height: 1.6;
    background-color: #0A1931;
}

.page-fishing-games-boss-strategies__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-fishing-games-boss-strategies__hero-section {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #F0F0F0;
}

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

.page-fishing-games-boss-strategies__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-fishing-games-boss-strategies__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-fishing-games-boss-strategies__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark blue text on gold */
    border: none;
}

.page-fishing-games-boss-strategies__btn--primary:hover {
    background-color: #e6c200;
}

.page-fishing-games-boss-strategies__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
}

.page-fishing-games-boss-strategies__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
}

.page-fishing-games-boss-strategies__content-section {
    padding: 60px 0;
    background-color: #1A2B4C; /* Slightly lighter dark blue for content sections */
    color: #F0F0F0;
}

.page-fishing-games-boss-strategies__bg--dark {
    background-color: #0A1931;
}

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

.page-fishing-games-boss-strategies__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-boss-strategies__sub-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-fishing-games-boss-strategies__intro-text {
    font-size: 1.15em;
    text-align: center;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-fishing-games-boss-strategies__text-block p {
    margin-bottom: 1em;
    color: #E0E0E0;
}

.page-fishing-games-boss-strategies__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #E0E0E0;
}

.page-fishing-games-boss-strategies__list li {
    margin-bottom: 10px;
}

.page-fishing-games-boss-strategies__list--numbered {
    list-style: decimal inside;
}

.page-fishing-games-boss-strategies__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-boss-strategies__image--large {
    max-width: 900px;
}

.page-fishing-games-boss-strategies__image--medium {
    max-width: 700px;
}

.page-fishing-games-boss-strategies__outro-text {
    font-size: 1.2em;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
    color: #F0F0F0;
}

.page-fishing-games-boss-strategies .highlight {
    color: #FFD700;
    font-weight: bold;
}

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

    .page-fishing-games-boss-strategies__hero-description {
        font-size: 1em;
    }

    .page-fishing-games-boss-strategies__section-title {
        font-size: 2em;
    }

    .page-fishing-games-boss-strategies__sub-title {
        font-size: 1.5em;
    }

    .page-fishing-games-boss-strategies__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

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

    .page-fishing-games-boss-strategies__hero-description {
        font-size: 0.9em;
    }

    .page-fishing-games-boss-strategies__section-title {
        font-size: 1.8em;
    }

    .page-fishing-games-boss-strategies__sub-title {
        font-size: 1.3em;
    }

    .page-fishing-games-boss-strategies__list {
        padding-left: 10px;
    }
}