.page-fishing-games-guide {
    font-family: Arial, sans-serif;
    color: #333333; /* Default text color for light body background */
    background: #FFFFFF; /* Explicitly set body background for content area */
}

/* Hero Section */
.page-fishing-games-guide__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, not var(--header-offset) */
    background-color: #017439; /* Brand color for hero section background */
    color: #ffffff;
    text-align: center;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-fishing-games-guide__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.page-fishing-games-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Default cover for desktop */
    aspect-ratio: 16/9; /* Maintain aspect ratio */
}

.page-fishing-games-guide__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative; /* Ensure content is above image if z-index is used */
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-fishing-games-guide__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFF00; /* Special color for H1 as per brand guide */
}

.page-fishing-games-guide__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
}

.page-fishing-games-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-fishing-games-guide__cta-buttons--center {
    justify-content: center;
}

.page-fishing-games-guide__btn-primary,
.page-fishing-games-guide__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games-guide__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

.page-fishing-games-guide__btn-primary:hover {
    background-color: #a30606;
    border-color: #a30606;
}

.page-fishing-games-guide__btn-secondary {
    background-color: #ffffff;
    color: #017439; /* Brand color */
    border: 2px solid #017439;
}

.page-fishing-games-guide__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #005a2e;
    border-color: #005a2e;
}

/* General Section Styling */
.page-fishing-games-guide__section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-fishing-games-guide__section:nth-of-type(even) {
    background-color: #f9f9f9;
}

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

.page-fishing-games-guide__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #017439; /* Brand color for section titles */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-fishing-games-guide__sub-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
    color: #017439;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-fishing-games-guide p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333333;
}