/* style/fishing-games.css */
/* 页面完整样式代码 - 注意：所有选择器必须使用BEM命名规则（双下划线__连接） */

/* Base styles for the page content */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default for light backgrounds */
    background-color: var(--secondary-color); /* Assuming shared.css sets a dark background for body */
}

/* Specific styling for sections with dark background */
.page-fishing-games__dark-bg {
    background-color: #1A1A1A; /* Auxiliary color for dark sections */
    color: #ffffff; /* Light text for dark backgrounds */
}

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

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

/* Section titles */
.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

/* Text blocks */
.page-fishing-games__text-block {
    font-size: 1.1em;
    margin-bottom: 1.5em;
    text-align: justify;
}

/* Links within content */
.page-fishing-games__text-block a,
.page-fishing-games__promotions-list a,
.page-fishing-games__faq-answer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__text-block a:hover,
.page-fishing-games__promotions-list a:hover,
.page-fishing-games__faq-answer a:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    box-sizing: border-box;
}

.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: 1;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
}

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

.page-fishing-games__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
}

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

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

.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, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons are responsive */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-fishing-games__btn-primary {
    background-color: #FFD700;
    color: #1A1A1A;
    border: 2px solid #FFD700;
}

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

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}