/* style/fishing-games.css */

/* Base styles for the fishing games page */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Default light text color for dark background */
    background: var(--dark-background); /* Inherit from shared.css */
}

.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: #26A9E0; /* Brand primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    font-weight: bold;
}

.page-fishing-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #f0f0f0; /* Light text for general content on dark background */
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below header */
}

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

.page-fishing-games__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-fishing-games__hero-content {
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-fishing-games__hero-description {
    font-size: 1.4em;
    color: #f0f0f0;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__hero-button,
.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 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;
    max-width: 100%; /* For responsiveness */
    box-sizing: border-box; /* For responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-fishing-games__btn-primary,
.page-fishing-games__hero-button,
.page-fishing-games__cta-button {
    background-color: #26A9E0; /* Primary brand color */
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-fishing-games__btn-primary:hover,
.page-fishing-games__hero-button:hover,
.page-fishing-games__cta-button:hover {
    background-color: #1a7fb3; /* Slightly darker primary color */
    border-color: #1a7fb3;
}

.page-fishing-games__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-fishing-games__btn-secondary:hover {
    background-color: #e0e0e0;
    color: #1a7fb3;
    border-color: #1a7fb3;
}

/* Sections */
.page-fishing-games__introduction-section,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section {
    padding: 60px 0;
    background-color: var(--dark-background); /* Dark background */
    color: #f0f0f0;
}

.page-fishing-games__features-section,
.page-fishing-games__strategies-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__cta-final-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Light background */
    color: #333333;
}

/* Titles for light background sections */
.page-fishing-games__features-section .page-fishing-games__section-title,
.page-fishing-games__strategies-section .page-fishing-games__section-title,
.page-fishing-games__why-choose-section .page-fishing-games__section-title,
.page-fishing-games__cta-final-section .page-fishing-games__section-title {
    color: #26A9E0; /* Brand primary color */
}

/* Text blocks for light background sections */
.page-fishing-games__features-section .page-fishing-games__text-block,
.page-fishing-games__strategies-section .page-fishing-games__text-block,
.page-fishing-games__why-choose-section .page-fishing-games__text-block,
.page-fishing-games__cta-final-section .page-fishing-games__text-block {
    color: #333333;
}

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

.page-fishing-games__feature-card,
.page-fishing-games__step-card,
.page-fishing-games__promotion-card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark sections */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f0f0f0;
}

.page-fishing-games__features-section .page-fishing-games__feature-card,
.page-fishing-games__strategies-section .page-fishing-games__feature-card {
    background-color: #FFFFFF; /* White background on light sections */
    color: #333333;
    border: 1px solid #e0e0e0;
}


.page-fishing-games__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #26A9E0; /* Brand primary color */
    font-weight: bold;
}

.page-fishing-games__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    min-height: 200px; /* Min size for images */
    min-width: 200px; /* Min size for images */
}

.page-fishing-games__step-number {
    font-size: 2.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Strategy List & Advantages List */
.page-fishing-games__strategy-list,
.page-fishing-games__advantages-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__list-item {
    background-color: rgba(255, 255, 255, 0.08); /* Transparent white on dark section */
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #f0f0f0;
}

.page-fishing-games__features-section .page-fishing-games__list-item,
.page-fishing-games__strategies-section .page-fishing-games__list-item,
.page-fishing-games__why-choose-section .page-fishing-games__list-item {
    background-color: #f8f8f8; /* Light background for items in light section */
    color: #333333;
}

.page-fishing-games__list-item-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-fishing-games__list-item-text {
    font-size: 1.05em;
    line-height: 1.5;
    color: #f0f0f0;
}

.page-fishing-games__features-section .page-fishing-games__list-item-text,
.page-fishing-games__strategies-section .page-fishing-games__list-item-text,
.page-fishing-games__why-choose-section .page-fishing-games__list-item-text {
    color: #333333;
}

.page-fishing-games__cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
}

.page-fishing-games__faq-item {
    background-color: rgba(255, 255, 255, 0.08); /* Transparent white on dark section */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #f0f0f0;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.15); /* Slightly darker transparent white */
    font-size: 1.2em;
    font-weight: bold;
    color: #FFFFFF;
    transition: background-color 0.3s ease;
}