/* style/fishing-games.css */

/* Base styles for the page content */
.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Default light text for dark body background */
    background-color: transparent; /* Main content background will be determined by sections */
}

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

/* Color schemes */
.page-fishing-games__dark-bg {
    background-color: #000000; /* Dark background, ensuring contrast with light text */
    color: #ffffff;
}

.page-fishing-games__light-bg {
    background-color: #ffffff; /* Light background, ensuring contrast with dark text */
    color: #333333;
}

.page-fishing-games__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0; /* Brand color for titles */
    font-weight: bold;
}

.page-fishing-games__section-title a,
.page-fishing-games__section-subtitle a,
.page-fishing-games__text-block a,
.page-fishing-games__link-inline {
    color: #26A9E0; /* Ensure links are visible */
    text-decoration: underline;
}

.page-fishing-games__section-subtitle {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 60px;
    color: inherit; /* Inherit color from parent section */
}

/* Buttons */
.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: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

.page-fishing-games__btn-primary {
    background-color: #26A9E0; /* Main brand color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

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

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

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

/* Specific button colors */
.page-fishing-games__btn-login {
    background-color: #EA7C07; /* Login specific color */
    border-color: #EA7C07;
    color: #ffffff;
}

.page-fishing-games__btn-login:hover {
    background-color: #c46406;
    border-color: #c46406;
}

/* Hero Section */
.page-fishing-games__hero-section {
    padding: 100px 0;
    padding-top: calc(var(--header-offset, 120px) + 60px); /* Adjust for header offset */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-fishing-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
    z-index: 1;
}

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

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

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

.page-fishing-games__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Darken image for better text contrast */
}

/* About Section */
.page-fishing-games__about-section {
    padding: 80px 0;
}

.page-fishing-games__image-content {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.page-fishing-games__features-section {
    padding: 80px 0;
}

.page-fishing-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-fishing-games__feature-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.page-fishing-games__feature-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
    padding: 80px 0;
}

.page-fishing-games__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-fishing-games__list-item {
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #333333;
}

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

.page-fishing-games__cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 80px 0;
}

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

.page-fishing-games__promotion-card {
    background-color: #ffffff; /* Light background for cards */
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
}

.page-fishing-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-fishing-games__promotion-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin: 0 20px 15px;
}

.page-fishing-games__promotion-card p {
    margin: 0 20px 25px;
}

.page-fishing-games__promotion-card .page-fishing-games__btn-primary {
    margin-top: auto; /* Push button to bottom */
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
    padding: 80px 0;
}

.page-fishing-games__advantage-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    gap: 30px;
}

.page-fishing-games__advantage-list .page-fishing-games__list-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #333333;
}

/* Download App Section */
.page-fishing-games__download-app-section {
    padding: 80px 0;
}

.page-fishing-games__app-download-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.page-fishing-games__app-info {
    flex: 1;
}

.page-fishing-games__app-features-list {
    list-style: disc;
    padding-left: 20px;
    margin: 20px 0;
    color: #f0f0f0;
}

.page-fishing-games__app-features-list .page-fishing-games__list-item {
    background-color: transparent;
    box-shadow: none;
    padding: 5px 0;
    margin-bottom: 5px;
    color: #f0f0f0;
}

.page-fishing-games__app-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

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

.page-fishing-games__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Video Section */
.page-fishing-games__video-section {
    padding: 80px 0;
    text-align: center;
}

.page-fishing-games__video-wrapper {
    margin: 40px auto;
    max-width: 1000px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
}

.page-fishing-games__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    background-color: #26A9E0; /* Brand color for question background */
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
    background-color: #1e87b8;
}

.page-fishing-games__faq-question h3 {
    margin: 0;
    color: #ffffff; /* Ensure title in question is white */
}

.page-fishing-games__faq-question h3 a {
    color: #ffffff;
    text-decoration: underline;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}