/* style/fishing-games.css */

/* Custom Colors */
:root {
    --page-bg-color: #08160F;
    --card-bg-color: #11271B;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

/* Base Styles for .page-fishing-games */
.page-fishing-games {
    background-color: var(--page-bg-color); /* Matches custom background color */
    color: var(--text-main-color); /* Light text for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

.page-fishing-games__section-title {
    font-size: 2.8em;
    font-weight: bold;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.page-fishing-games__section-description {
    font-size: 1.1em;
    color: var(--text-secondary-color);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff; /* White text for primary button */
    border: 2px solid transparent;
}

.page-fishing-games__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px var(--glow-color);
}

.page-fishing-games__btn-secondary {
    background: var(--card-bg-color);
    color: var(--glow-color);
    border: 2px solid var(--glow-color);
}

.page-fishing-games__btn-secondary:hover {
    background: var(--glow-color);
    color: var(--page-bg-color);
    border-color: var(--glow-color);
    box-shadow: 0 0 15px var(--glow-color);
}

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

/* Card Styles */
.page-fishing-games__card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: var(--text-main-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px var(--glow-color);
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
    margin-bottom: 60px;
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

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

.page-fishing-games__hero-content {
    position: relative; /* Ensure content is above image but in normal flow */
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    background: rgba(8, 22, 15, 0.8); /* Semi-transparent background for readability */
    border-radius: 15px;
    margin-top: -100px; /* Pull up to overlap image slightly for design, but text is NOT on image */
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.page-fishing-games__hero-title {
    font-size: clamp(2.5em, 5vw, 3.8em); /* Responsive font size */
    font-weight: 900;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.page-fishing-games__hero-description {
    font-size: 1.2em;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

/* Video Section */
.page-fishing-games__video-section {
    background-color: var(--card-bg-color);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 60px;
}

.page-fishing-games__video-container {
    width: 100%; /* Desktop width: 100% */
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-fishing-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    width: 100%; /* Ensure wrapper is 100% width */
}

.page-fishing-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    cursor: pointer;
}

.page-fishing-games__video-description {
    color: var(--text-secondary-color);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-fishing-games__video-cta {
    margin-top: 0;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
    padding: 80px 0;
    margin-bottom: 60px;
    background-color: var(--deep-green-color);
}

.page-fishing-games__dark-section .page-fishing-games__section-title {
    color: var(--gold-color);
}

.page-fishing-games__dark-section .page-fishing-games__section-description {
    color: var(--text-secondary-color);
}

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

.page-fishing-games__feature-card {
    text-align: center;
    padding: 30px;
    background-color: var(--card-bg-color);
    color: var(--text-main-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.page-fishing-games__feature-title {
    font-size: 1.6em;
    color: var(--glow-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__feature-text {
    color: var(--text-secondary-color);
    font-size: 1em;
}

/* Featured Games Section */
.page-fishing-games__featured-games-section {
    padding: 80px 0;
    margin-bottom: 60px;
}

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

.page-fishing-games__game-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}

.page-fishing-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    display: block;
}

.page-fishing-games__game-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-fishing-games__game-title {
    font-size: 1.8em;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__game-text {
    color: var(--text-secondary-color);
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__game-button {
    margin-top: auto;
    width: 100%;
}

/* How To Play Section */
.page-fishing-games__how-to-play-section {
    padding: 80px 0;
    margin-bottom: 60px;
    background-color: var(--deep-green-color);
}

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

.page-fishing-games__step-card {
    text-align: center;
    padding: 30px;
}

.page-fishing-games__step-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-fishing-games__step-title {
    font-size: 1.7em;
    color: var(--glow-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__step-text {
    color: var(--text-secondary-color);
    font-size: 1em;
    margin-bottom: 25px;
}

/* Tips & Strategy Section */
.page-fishing-games__tips-strategy-section {
    padding: 80px 0;
    margin-bottom: 60px;
}

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

.page-fishing-games__tip-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}

.page-fishing-games__tip-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    display: block;
}

.page-fishing-games__tip-title {
    font-size: 1.8em;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__tip-text {
    color: var(--text-secondary-color);
    font-size: 0.95em;
    flex-grow: 1;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 80px 0;
    margin-bottom: 60px;
    background-color: var(--deep-green-color);
}

.page-fishing-games__promo-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin: 40px auto;
    display: block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.page-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 800px;
    color: var(--text-main-color);
    font-size: 1.1em;
}

.page-fishing-games__promo-item {
    background-color: var(--card-bg-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    line-height: 1.5;
}

.page-fishing-games__promo-item strong {
    color: var(--gold-color);
}

/* Support Section */
.page-fishing-games__support-section {
    padding: 80px 0;
    margin-bottom: 60px;
}

.page-fishing-games__support-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.page-fishing-games__support-subtitle {
    font-size: 2em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__support-section p {
    color: var(--text-secondary-color);
    margin-bottom: 20px;
}

.page-fishing-games__contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    color: var(--text-main-color);
    font-size: 1.1em;
}

.page-fishing-games__contact-list li {
    margin-bottom: 10px;
}

.page-fishing-games__contact-list strong {
    color: var(--glow-color);
}

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

.page-fishing-games__support-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    display: block;
    margin: 0 auto;
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
    margin-bottom: 60px;
    background-color: var(--deep-green-color);
}

.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-fishing-games__faq-item {
    margin-bottom: 20px;
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.page-fishing-games__faq-item summary {
    list-style: none; /* Hide default marker */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    color: var(--glow-color);
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-fishing-games__faq-item summary:hover {
    background-color: rgba(46, 122, 78, 0.2); /* Lighter hover for dark background */
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5em;
    margin-left: 20px;
    color: var(--gold-color);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    content: '−'; /* Change to minus when open */
}

.page-fishing-games__faq-answer {
    padding: 0 25px 20px;
    color: var(--text-secondary-color);
    font-size: 1em;
    line-height: 1.6;
}

.page-fishing-games__faq-answer p {
    margin-top: 0;
    margin-bottom: 10px;
}

.page-fishing-games__faq-answer a {
    color: var(--glow-color);
    text-decoration: underline;
}

.page-fishing-games__faq-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin: 40px auto 0 auto;
    display: block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
    padding: 80px 0;
    background-color: var(--deep-green-color);
    text-align: center;
}

/* General Image Styles */
.page-fishing-games img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        margin-top: -80px;
    }
    .page-fishing-games__section-title {
        font-size: 2.2em;
    }
    .page-fishing-games__support-content {
        flex-direction: column;
        text-align: center;
    }
    .page-fishing-games__support-image-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        margin-bottom: 40px;
    }
    .page-fishing-games__hero-image-wrapper {
        height: 400px;
    }
    .page-fishing-games__hero-content {
        margin-top: -60px;
        padding: 30px 15px;
    }
    .page-fishing-games__hero-title {
        font-size: clamp(2em, 8vw, 2.8em);
    }
    .page-fishing-games__hero-description {
        font-size: 1em;
    }
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
        width: 100%; /* Ensure buttons take full width */
    }

    .page-fishing-games__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-fishing-games__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    /* Mobile image and video responsiveness */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games video,
    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__video-section,
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper,
    .page-fishing-games__cta-buttons,
    .page-fishing-games__button-group,
    .page-fishing-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    .page-fishing-games__video-section {
        padding-top: 10px !important; /* Small top padding for video section */
        padding-bottom: 40px;
    }
    .page-fishing-games__video-wrapper {
        padding-bottom: 75%; /* Adjust aspect ratio for mobile if needed, or keep 16:9 */
    }

    .page-fishing-games__features-grid,
    .page-fishing-games__games-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__feature-card,
    .page-fishing-games__game-card,
    .page-fishing-games__step-card,
    .page-fishing-games__tip-card {
        padding: 20px;
    }

    .page-fishing-games__game-image,
    .page-fishing-games__step-image,
    .page-fishing-games__tip-image {
        height: 150px;
    }

    .page-fishing-games__promo-image,
    .page-fishing-games__faq-image {
        margin: 20px auto;
    }

    .page-fishing-games__promo-list,
    .page-fishing-games__contact-list {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-fishing-games__support-subtitle {
        font-size: 1.5em;
    }
    .page-fishing-games__faq-item summary {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-answer {
        padding: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-image-wrapper {
        height: 300px;
    }
    .page-fishing-games__hero-content {
        margin-top: -40px;
        padding: 20px 10px;
    }
    .page-fishing-games__section-title {
        font-size: 1.5em;
    }
    .page-fishing-games__hero-title {
        font-size: clamp(1.8em, 10vw, 2.5em);
    }
}