/* 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 dark body background */
    background-color: transparent; /* Body background is #121212 from shared.css */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

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

.page-fishing-games__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #f0f0f0; /* Light text for dark background */
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    height: 700px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

.page-fishing-games__hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken background image for text readability */
    /* No filter to change color */
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
    border-radius: 10px;
}

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

.page-fishing-games__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 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, color 0.3s ease;
    max-width: 100%; /* For responsive buttons */
    box-sizing: border-box; /* For responsive buttons */
    white-space: normal; /* For responsive buttons */
    word-wrap: break-word; /* For responsive buttons */
}

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

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

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

.page-fishing-games__btn-secondary:hover {
    background-color: #26A9E0;
    color: #FFFFFF;
}

/* Video Wrapper */
.page-fishing-games__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px; /* Max width for the video */
    margin: 40px auto 0 auto;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box; /* For responsive videos */
    cursor: pointer;
}

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

.page-fishing-games__video-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none; /* Remove underline for the link wrapping the video */
}

.page-fishing-games__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.page-fishing-games__video-link:hover .page-fishing-games__video-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.page-fishing-games__video-play-icon {
    font-size: 4em;
    margin-bottom: 10px;
    line-height: 1;
}

.page-fishing-games__video-text {
    margin: 0;
}


/* Intro Section */
.page-fishing-games__intro-section {
    padding: 60px 0;
    background-color: #1A1A1A; /* Darker background for contrast with body */
}

.page-fishing-games__image-block {
    text-align: center;
    margin: 40px 0;
}

.page-fishing-games__image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: block; /* Ensure it behaves as a block element */
    margin: 0 auto; /* Center image */
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
    padding: 60px 0;
    background-color: #121212; /* Body background color */
}

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

.page-fishing-games__benefit-card {
    background-color: rgba(255, 255, 255, 0.08); /* Light background for card on dark body */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #f0f0f0; /* Light text for card */
}

.page-fishing-games__benefit-card:hover {
    transform: translateY(-5px);
}

.page-fishing-games__benefit-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

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

/* Featured Games Section */
.page-fishing-games__featured-games-section {
    padding: 60px 0;
    background-color: #1A1A1A; /* Darker background */
}

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

.page-fishing-games__game-card {
    background-color: rgba(255, 255, 255, 0.08); /* Card background */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #f0f0f0; /* Light text */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-fishing-games__game-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-fishing-games__game-card .page-fishing-games__card-title {
    font-size: 1.4em;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-fishing-games__game-card p {
    flex-grow: 1;
    margin-bottom: 20px;
}

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

/* Guide Section */
.page-fishing-games__guide-section {
    padding: 60px 0;
    background-color: #121212; /* Body background color */
}

.page-fishing-games__guide-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-fishing-games__guide-steps {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__guide-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-fishing-games__guide-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-fishing-games__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    text-align: left;
}

.page-fishing-games__step-number {
    background-color: #26A9E0;
    color: #FFFFFF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    flex-shrink: 0;
    margin-right: 15px;
}

.page-fishing-games__step-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-top: 0;
    margin-bottom: 5px;
}

.page-fishing-games__step-item p {
    color: #f0f0f0;
    margin: 0;
}

.page-fishing-games__step-item a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-fishing-games__step-item a:hover {
    color: #1a7fb3;
}


/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 60px 0;
    background-color: #1A1A1A; /* Darker background */
}

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

.page-fishing-games__promo-card {
    background-color: rgba(255, 255, 255, 0.08); /* Card background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #f0f0f0; /* Light text */
    text-align: center;
}

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

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 60px 0;
    background-color: #121212; /* Body background color */
}

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

.page-fishing-games__faq-item {
    background-color: rgba(255, 255, 255, 0.08); /* Card background */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    color: #f0f0f0; /* Light text */
}

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

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

.page-fishing-games__faq-title {
    margin: 0;
    font-size: 1.2em;
    color: #26A9E0;
}

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

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

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

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    max-height: 1000px !important; /* Ensure it expands */
    padding: 15px 25px 25px 25px;
}

.page-fishing-games__faq-answer p {
    margin: 0;
    color: #f0f0f0;
}

.page-fishing-games__faq-answer a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-fishing-games__faq-answer a:hover {
    color: #1a7fb3;
}