.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Text color for dark body background */
    background-color: #000000; /* Ensure this matches body background if not inheriting */
    line-height: 1.6;
    padding-bottom: 60px; /* Space before footer */
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background: linear-gradient(135deg, #8B0000, #FFD700); /* Blend brand colors */
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.page-fishing-games__hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff; /* Ensure high contrast */
}

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

.page-fishing-games__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-fishing-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3; /* Subtle background image */
    overflow: hidden;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* General Section Styling */
.page-fishing-games__section {
    padding: 60px 20px;
    background-color: #0d0d0d; /* Slightly lighter dark background for sections */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-fishing-games__subsection-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #8B0000;
    padding-left: 15px;
}

.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-fishing-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

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

.page-fishing-games__highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    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 responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
}

.page-fishing-games__btn-primary {
    background-color: #FFD700;
    color: #8B0000; /* Dark red text on gold button for contrast */
    border: 2px solid #FFD700;
}

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

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

.page-fishing-games__btn-secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    border-color: #FFD700;
}

.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-fishing-games__cta-buttons--center {
    text-align: center;
}

/* Lists */
.page-fishing-games__list,
.page-fishing-games__numbered-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-fishing-games__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.page-fishing-games__list-item::before {
    content: '★'; /* Star icon for list items */
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
    top: 0;
}

.page-fishing-games__numbered-list .page-fishing-games__list-item::before {
    content: counter(list-item) ".";
    counter-increment: list-item;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2em;
    left: 0;
    position: absolute;
    top: 0;
}
.page-fishing-games__numbered-list {
    counter-reset: list-item;
}

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

.page-fishing-games__game-card,
.page-fishing-games__promotion-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    color: #e0e0e0;
}

.page-fishing-games__game-card:hover,
.page-fishing-games__promotion-card:hover {
    transform: translateY(-10px);
}

.page-fishing-games__game-image,
.page-fishing-games__promotion-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
    display: block; /* Ensure no extra space below image */
    min-width: 200px;
    min-height: 200px;
}

.page-fishing-games__game-title,
.page-fishing-games__promotion-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-fishing-games__game-title a,
.page-fishing-games__promotion-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-fishing-games__game-title a:hover,
.page-fishing-games__promotion-title a:hover {
    text-decoration: underline;
}

.page-fishing-games__game-description,
.page-fishing-games__promotion-description {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 20px;
    padding: 0 15px;
}

/* Dark Section (for promotions) */
.page-fishing-games__dark-section {
    background: linear-gradient(90deg, #8B0000, #FFD700);
    color: #ffffff;
}

.page-fishing-games__dark-section .page-fishing-games__section-title {
    color: #ffffff;
}

.page-fishing-games__dark-section .page-fishing-games__text-block {
    color: #f0f0f0;
}

/* Mobile Experience Section */
.page-fishing-games__mobile-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-fishing-games__mobile-text {
    flex: 1;
}

.page-fishing-games__mobile-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-fishing-games__mobile-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

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

.page-fishing-games__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #FFD700;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
    transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #e0e0e0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 1000px !important; /* Sufficiently large */
    padding: 20px !important;
}

.page-fishing-games__faq-answer p {
    margin: 0;
    font-size: 1em;
}