/* 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 the page, as body background is dark */
    background-color: transparent; /* Main content background is typically transparent to show body bg */
}

/* Container for consistent spacing */
.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section titles */
.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #FFFFFF; /* Light text for dark backgrounds */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Specific background and text color combinations */
.page-fishing-games__dark-bg {
    background-color: #017439; /* Main brand color */
    color: #ffffff;
}

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

.page-fishing-games__light-bg .page-fishing-games__section-title {
    color: #017439; /* Brand color for titles on light background */
}

/* Hero Section */
.page-fishing-games__hero-section {
    padding: 100px 0;
    text-align: center;
    background: url('[GALLERY:hero_main:1920x1080:fishing_game,money_fish,action,vietnam,ocean_theme]') no-repeat center center/cover;
    position: relative;
    z-index: 1;
}

.page-fishing-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Overlay for text readability */
    z-index: -1;
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFF00; /* Yellow for emphasis, ensuring contrast with dark overlay */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

/* CTA Buttons */
.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-fishing-games__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

.page-fishing-games__btn-primary:hover {
    background-color: #e02020;
    transform: translateY(-2px);
}