/* style/fishing-games.css */

/* --- Base Styles & Variables --- */
:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --dark-background: #1a1a2e; /* Body background color */
    --light-text-color: #ffffff;
    --dark-text-color: #333333; /* For light backgrounds */
    --btn-register-color: #C30808;
    --btn-login-color: #C30808;
    --btn-font-color: #FFFF00;
}

/* Page container and default text color for dark body background */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--light-text-color); /* Text color for the main page content */
    background-color: var(--dark-background); /* Ensure consistency if section backgrounds are not full width */
}

/* Ensure content area text is readable on white backgrounds */
.page-fishing-games__intro-section,
.page-fishing-games__guide-section,
.page-fishing-games__faq-section,
.page-fishing-games__promotions-section {
    background-color: var(--secondary-color); /* White background for readability */
    color: var(--dark-text-color); /* Dark text for light background */
}

.page-fishing-games__section-title,
.page-fishing-games__sub-title,
.page-fishing-games__card-title,
.page-fishing-games__feature-title,
.page-fishing-games__promo-title {
    color: var(--primary-color); /* Use primary color for headings on light backgrounds */
    margin-bottom: 20px;
    text-align: center;
}

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Clamp for H1, H2, H3 */
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 10px;
    position: relative;
    color: var(--light-text-color); /* Default for dark sections */
}

.page-fishing-games__intro-section .page-fishing-games__section-title,
.page-fishing-games__guide-section .page-fishing-games__section-title,
.page-fishing-games__faq-section .page-fishing-games__section-title,
.page-fishing-games__promotions-section .page-fishing-games__section-title {
    color: var(--primary-color); /* For light sections */
}


.page-fishing-games__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-fishing-games__sub-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    margin-top: 30px;
    text-align: left;
}

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

.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding: 60px 0;
    padding-top: 10px; /* Small top padding, body has main offset */
    background-color: var(--dark-background);
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}