/* style/fishing-games.css */

/* --- General Page Styles --- */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: var(--primary-color, #0A1931); /* Inherit from shared, default dark blue */
}

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

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: var(--secondary-color, #FFD700); /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-fishing-games__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-fishing-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0; /* Light text */
}

.page-fishing-games__text-center {
    text-align: center;
}

.page-fishing-games__list-highlight {
    color: var(--secondary-color, #FFD700);
}

/* --- Color Contrast Classes (Smart Selection) --- */
.page-fishing-games__dark-bg {
    background-color: #0A1931; /* Primary brand color */
    color: #ffffff;
}

.page-fishing-games__light-bg {
    background-color: #ffffff;
    color: #333333; /* Dark text for light background */
}

/* Specific text color for light background sections */
.page-fishing-games__light-bg .page-fishing-games__text-block,
.page-fishing-games__light-bg .page-fishing-games__feature-list li,
.page-fishing-games__light-bg .page-fishing-games__step-list li,
.page-fishing-games__light-bg .page-fishing-games__security-features li,
.page-fishing-games__light-bg .page-fishing-games__faq-title,
.page-fishing-games__light-bg .page-fishing-games__faq-answer p {
    color: #333333;
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
    color: #0A1931; /* Dark title for light background */
}
.page-fishing-games__light-bg .page-fishing-games__sub-title {
    color: #0A1931;
}

/* --- Buttons --- */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
}

.page-fishing-games__btn-primary {
    background-color: var(--secondary-color, #FFD700); /* Gold background */
    color: #0A1931; /* Dark text for gold background */
    border: 2px solid var(--secondary-color, #FFD700);
    margin-right: 15px;
}

.page-fishing-games__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color, #FFD700); /* Gold text */
    border: 2px solid var(--secondary-color, #FFD700);
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--secondary-color, #FFD700);
    color: #0A1931; /* Dark text on hover */
}

.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* --- Hero Section --- */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    min-height: 700px;
    overflow: hidden;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-fishing-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability, no color change */
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    color: #ffffff;
}

.page-fishing-games__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #FFD700;
}

.page-fishing-games__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* --- About Section --- */
.page-fishing-games__about-section {
    padding: 80px 0;
}

.page-fishing-games__image-content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.page-fishing-games__content-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__image-content-block .page-fishing-games__text-block {
    flex: 1;
    max-width: 50%;
}

.page-fishing-games__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-fishing-games__feature-list li {
    background: url('/path/to/check-icon.svg') no-repeat left center; /* Placeholder for check icon */
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333333;
}

/* --- Game Types Section --- */
.page-fishing-games__game-types-section {
    padding: 80px 0;
}

.page-fishing-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}