:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --accent-color: #C30808; /* For Register/Login buttons */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --bg-color-light: #f5f5f5;
    --link-text-color: #017439;
    --link-hover-color: #005f2c;
}

/* Base styles for the page content */
.page-blog-latest-fishing-games-recommendation {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Body background is light (#FFFFFF), so text should be dark */
    background: var(--secondary-color); /* Matches body background from shared.css */
}

.page-blog-latest-fishing-games-recommendation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-blog-latest-fishing-games-recommendation__section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-blog-latest-fishing-games-recommendation__section:nth-of-type(even) {
    background-color: var(--bg-color-light);
}

.page-blog-latest-fishing-games-recommendation__section-title {
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

/* HERO Section */
.page-blog-latest-fishing-games-recommendation__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background: linear-gradient(135deg, #017439, #005f2c); /* Background for the section, not the main image */
    color: var(--text-color-light);
}

.page-blog-latest-fishing-games-recommendation__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure full width within max-width */
}

.page-blog-latest-fishing-games-recommendation__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-fishing-games-recommendation__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px; /* Consistent with parent div */
}

.page-blog-latest-fishing-games-recommendation__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.page-blog-latest-fishing-games-recommendation__main-title {
    color: var(--text-color-light);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-blog-latest-fishing-games-recommendation__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.5;
}

.page-blog-latest-fishing-games-recommendation__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color); /* Using #C30808 for CTA */
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-blog-latest-fishing-games-recommendation__cta-button:hover {
    background: #e00a0a; /* Slightly darker red on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-fishing-games-recommendation__cta-button--large {
    font-size: 22px;
    padding: 18px 50px;
}

/* General content styles */
.page-blog-latest-fishing-games-recommendation h2 {
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.page-blog-latest-fishing-games-recommendation h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-latest-fishing-games-recommendation p {
    margin-bottom: 15px;
    color: var(--text-color-dark);
}

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

.page-blog-latest-fishing-games-recommendation__card {
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0; /* Added for better contrast on light background */
    color: var(--text-color-dark);
}

.page-blog-latest-fishing-games-recommendation__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-blog-latest-fishing-games-recommendation__card-title {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 10px;
}

.page-blog-latest-fishing-games-recommendation__card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    display: block;
    min-width: 200px; /* Min size for images */
    min-height: 200px; /* Min size for images */
}

/* Game List specific styles */
.page-blog-latest-fishing-games-recommendation__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}