/* style/game-guides-fishing-game-guide.css */
.page-game-guides-fishing-game-guide {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #0A2342; /* Deep Ocean Blue primary background */
    line-height: 1.6;
}

.page-game-guides-fishing-game-guide__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-game-guides-fishing-game-guide__container--small {
    max-width: 800px;
}

/* Hero Section */
.page-game-guides-fishing-game-guide__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1A3E6A 100%); /* Darker blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #FFD700;
}

.page-game-guides-fishing-game-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_waves,blue_gold_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-guides-fishing-game-guide__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-game-guides-fishing-game-guide__hero-subtitle {
    font-size: 1.3em;
    color: #C0C0C0; /* Lighter gray for subtitle */
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-game-guides-fishing-game-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    margin: 10px;
}

.page-game-guides-fishing-game-guide__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2342; /* Deep Ocean Blue */
    border: 2px solid #FFD700;
}

.page-game-guides-fishing-game-guide__btn--primary:hover {
    background-color: #E6C200; /* Darker gold */
    color: #0A2342;
    transform: translateY(-3px);
}

.page-game-guides-fishing-game-guide__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-game-guides-fishing-game-guide__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-3px);
}

.page-game-guides-fishing-game-guide__btn--tertiary {
    background-color: #1A3E6A;
    color: #FFD700;
    border: 2px solid #1A3E6A;
}

.page-game-guides-fishing-game-guide__btn--tertiary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-3px);
}

/* Sections */
.page-game-guides-fishing-game-guide__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-guides-fishing-game-guide__section:last-of-type {
    border-bottom: none;
}

.page-game-guides-fishing-game-guide__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

.page-game-guides-fishing-game-guide__sub-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-game-guides-fishing-game-guide p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-game-guides-fishing-game-guide ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-game-guides-fishing-game-guide ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-game-guides-fishing-game-guide strong {
    color: #FFD700;
}

/* Image Styling */
.page-game-guides-fishing-game-guide__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-game-guides-fishing-game-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

/* Call to Action specific styling */
.page-game-guides-fishing-game-guide__cta {
    text-align: center;
    background-color: #1A3E6A; /* Slightly lighter blue for CTA background */
    padding: 80px 0;
}

.page-game-guides-fishing-game-guide__cta-buttons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-game-guides-fishing-game-guide__disclaimer {
    margin-top: 40px;
    font-size: 0.95em;
    color: #A0A0A0;
}

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

    .page-game-guides-fishing-game-guide__hero-subtitle {
        font-size: 1.1em;
    }

    .page-game-guides-fishing-game-guide__section-title {
        font-size: 2em;
    }

    .page-game-guides-fishing-game-guide__sub-title {
        font-size: 1.5em;
    }

    .page-game-guides-fishing-game-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-guides-fishing-game-guide__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-game-guides-fishing-game-guide__hero-title {
        font-size: 2em;
    }

    .page-game-guides-fishing-game-guide__hero-subtitle {
        font-size: 1em;
    }

    .page-game-guides-fishing-game-guide__section-title {
        font-size: 1.8em;
    }

    .page-game-guides-fishing-game-guide__sub-title {
        font-size: 1.3em;
    }

    .page-game-guides-fishing-game-guide__btn {
        padding: 10px 20px;
        font-size: 0.9em;
        width: 100%;
        box-sizing: border-box;
    }
}