/* style/fishing-games.css */

/* Base styles for the page content */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background from shared.css */
    padding-bottom: 60px; /* Space before footer */
}

/* Section general styles */
.page-fishing-games__section {
    padding: 60px 0;
    text-align: center;
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-fishing-games__subsection-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__feature-heading,
.page-fishing-games__game-title,
.page-fishing-games__step-title,
.page-fishing-games__strategy-title,
.page-fishing-games__promo-title,
.page-fishing-games__info-title {
    font-size: 1.4em;
    color: #FFD700; /* Gold for card/feature titles */
    margin-bottom: 10px;
}

.page-fishing-games__section-description,
.page-fishing-games__text-block,
.page-fishing-games__feature-description,
.page-fishing-games__game-description,
.page-fishing-games__step-description,
.page-fishing-games__strategy-description,
.page-fishing-games__promo-description,
.page-fishing-games__info-description,
.page-fishing-games p,
.page-fishing-games li {
    font-size: 1.1em;
    color: #f0f0f0; /* Light grey for general text on dark background */
    margin-bottom: 15px;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(255, 215, 0, 0.4) 100%);
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}