.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default text color for light background */
    line-height: 1.6;
    background-color: #FFFFFF; /* Explicitly set for clarity, although body default is white */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding as body handles header offset */
    background-color: #017439; /* Brand color for hero background */
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px; /* Fixed height for desktop hero image */
    overflow: hidden;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Desktop: cover to fill space */
    display: block;
}

.page-fishing-games__hero-content {
    position: relative;
    padding: 40px 20px;
    text-align: center;
    z-index: 1;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFF00; /* Yellow for title for contrast */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-fishing-games__hero-description a {
    color: #FFFF00;
    text-decoration: underline;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__card-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
}

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

.page-fishing-games__btn-primary:hover {
    background-color: #a30606;
    border-color: #a30606;
    transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #FFFF00;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #FFFF00;
    color: #C30808;
    transform: translateY(-2px);
}

/* General Sections */
.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #017439; /* Brand color for section titles */
}

.page-fishing-games__intro-section,
.page-fishing-games__guide-section,
.page-fishing-games__benefits-section,
.page-fishing-games__faq-section {
    padding: 60px 0;
}

.page-fishing-games__games-showcase,
.page-fishing-games__promotions-section {
    padding: 60px 0;
    background-color: #017439; /* Dark background for these sections */
    color: #ffffff;
}

.page-fishing-games__games-showcase .page-fishing-games__section-title,
.page-fishing-games__promotions-section .page-fishing-games__section-title {
    color: #ffffff;
}

.page-fishing-games__text-block {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
}

.page-fishing-games__text-block a {
    color: #017439;
    text-decoration: underline;
}

.page-fishing-games__dark-bg .page-fishing-games__text-block a {
    color: #FFFF00;
}

/* Features Grid */
.page-fishing-games__features-grid,
.page-fishing-games__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__feature-item,
.page-fishing-games__benefit-item {
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-fishing-games__feature-item:hover,
.page-fishing-games__benefit-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games__feature-icon,
.page-fishing-games__benefit-icon {
    width: 100%;
    height: auto;
    max-width: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__feature-title,
.page-fishing-games__benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #017439;
}

.page-fishing-games__feature-description,
.page-fishing-games__benefit-description {
    font-size: 1rem;
    color: #555555;
}

.page-fishing-games__benefit-description a {
    color: #017439;
    text-decoration: underline;
}

/* Product Cards */
.page-fishing-games__products-grid,
.page-fishing-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__product-card,
.page-fishing-games__promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
    color: #333333; /* Ensure dark text on white card background */
}

.page-fishing-games__product-card:hover,
.page-fishing-games__promo-card:hover {
    transform: translateY(-5px);
}

.page-fishing-games__product-image,
.page-fishing-games__promo-image {
    width: 100%;
    height: 250px; /* Fixed height for consistent card image size */
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
}

.page-fishing-games__product-title,
.page-fishing-games__promo-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-fishing-games__product-title a,
.page-fishing-games__promo-title a {
    color: #017439;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__product-title a:hover,
.page-fishing-games__promo-title a:hover {
    color: #00562e;
}

.page-fishing-games__product-description,
.page-fishing-games__promo-description {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-fishing-games__card-button {
    background-color: #017439;
    color: #ffffff;
    border: 2px solid #017439;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    margin-top: 10px;
}

.page-fishing-games__card-button:hover {
    background-color: #00562e;
    border-color: #00562e;
}

/* Guide Section */
.page-fishing-games__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__guide-step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-fishing-games__step-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #017439;
    color: #ffffff;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.page-fishing-games__step-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #017439;
}

.page-fishing-games__step-description {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 20px;
}

.page-fishing-games__step-description a {
    color: #017439;
    text-decoration: underline;
}

.page-fishing-games__article-body {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 20px;
    text-align: left;
}

.page-fishing-games__article-body p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #333333;
}

.page-fishing-games__article-body a {
    color: #017439;
    text-decoration: underline;
}

.page-fishing-games__article-body ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #333333;
}

.page-fishing-games__article-body li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.page-fishing-games__sub-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #017439;
}