/* style/fishing-games.css */

/* Custom Colors */
:root {
    --fishing-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --fishing-games-card-bg: #11271B;
    --fishing-games-background: #08160F;
    --fishing-games-text-main: #F2FFF6;
    --fishing-games-text-secondary: #A7D9B8;
    --fishing-games-border: #2E7A4E;
    --fishing-games-glow: #57E38D;
    --fishing-games-gold: #F2C14E;
    --fishing-games-divider: #1E3A2A;
    --fishing-games-deep-green: #0A4B2C;
}

.page-fishing-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--fishing-games-text-main); /* Default text color for the page */
    background-color: var(--fishing-games-background); /* Overall page background */
}

.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden;
}

.page-fishing-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6);
}

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

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--fishing-games-text-main);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 30px;
    color: var(--fishing-games-text-secondary);
}

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

.page-fishing-games__button {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
}

.page-fishing-games__btn-primary {
    background: var(--fishing-games-button-gradient);
    color: #ffffff; /* Always white for primary button */
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--fishing-games-text-main); /* Light text for secondary button */
    border: 2px solid var(--fishing-games-border);
}

.page-fishing-games__btn-secondary:hover {
    background-color: rgba(46, 122, 78, 0.2);
    transform: translateY(-2px);
}

.page-fishing-games__section {
    padding: 80px 20px;
    text-align: center;
}

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

.page-fishing-games__heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 40px;
    font-weight: bold;
}

.page-fishing-games__paragraph {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Color classes */
.page-fishing-games__dark-bg {
    background-color: var(--fishing-games-background);
    color: var(--fishing-games-text-main);
}

.page-fishing-games__light-bg {
    background-color: #11271B; /* Using Card BG for light sections, still dark but lighter than main background */
    color: var(--fishing-games-text-main);
}

.page-fishing-games__text-main {
    color: var(--fishing-games-text-main);
}

.page-fishing-games__text-secondary {
    color: var(--fishing-games-text-secondary);
}

.page-fishing-games__deep-green {
    color: var(--fishing-games-deep-green);
}

.page-fishing-games__gold {
    color: var(--fishing-games-gold);
}

.page-fishing-games__about-fishing-games .page-fishing-games__deep-green {
    color: var(--fishing-games-text-main);
}

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

.page-fishing-games__game-card {
    background-color: var(--fishing-games-card-bg);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.page-fishing-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

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

.page-fishing-games__card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--fishing-games-text-main);
}

.page-fishing-games__card-description {
    font-size: 0.95rem;
    color: var(--fishing-games-text-secondary);
    flex-grow: 1;
}

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

/* Guide Section */
.page-fishing-games__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-fishing-games__step-item {
    background-color: var(--fishing-games-card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

.page-fishing-games__step-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games__step-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--fishing-games-gold);
}

.page-fishing-games__step-description {
    font-size: 1rem;
    color: var(--fishing-games-text-secondary);
}

/* Strategies Section */
.page-fishing-games__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__list-item {
    background-color: var(--fishing-games-card-bg);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-fishing-games__list-item:last-child {
    margin-bottom: 0;
}

.page-fishing-games__list-item:hover {
    background-color: #1a3325; /* Slightly lighter on hover */
}

.page-fishing-games__list-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--fishing-games-gold);
}

.page-fishing-games__list-description {
    font-size: 1rem;
    color: var(--fishing-games-text-secondary);
}

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

.page-fishing-games__promo-card {
    background-color: var(--fishing-games-card-bg);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.page-fishing-games__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.page-fishing-games__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__feature-item {
    background-color: var(--fishing-games-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    height: 100%;
    box-sizing: border-box;
}

.page-fishing-games__feature-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--fishing-games-gold);
}

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

.page-fishing-games__feature-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* App Download Section */
.page-fishing-games__app-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    text-align: left;
}

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

.page-fishing-games__app-benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-fishing-games__app-benefits-list .page-fishing-games__list-item {
    background-color: transparent;
    box-shadow: none;
    padding: 8px 0;
    margin-bottom: 5px;
    position: relative;
    padding-left: 25px;
    color: var(--fishing-games-text-secondary);
}

.page-fishing-games__app-benefits-list .page-fishing-games__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--fishing-games-gold);
}

.page-fishing-games__app-image-wrapper {
    flex: 0 0 300px;
    text-align: center;
}

.page-fishing-games__app-image {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-fishing-games__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-fishing-games__faq-item {
    background-color: var(--fishing-games-card-bg);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--fishing-games-text-main);
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    background-color: #1a3325;
}

.page-fishing-games__faq-question:hover {
    background-color: #1a3325; /* Slightly lighter on hover */
}

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--fishing-games-gold);
    margin-left: 15px;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
    content: '−';
}

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

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

/* Conclusion Section */
.page-fishing-games__conclusion-section .page-fishing-games__paragraph {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        padding: 15px;
    }

    .page-fishing-games__section {
        padding: 60px 15px;
    }

    .page-fishing-games__app-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .page-fishing-games__app-image-wrapper {
        order: -1; /* Image above text on mobile */
        flex: none;
        width: 100%;
    }
    .page-fishing-games__app-image {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .page-fishing-games__heading {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .page-fishing-games__description, .page-fishing-games__paragraph {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }

    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-fishing-games__button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-fishing-games__game-list, .page-fishing-games__steps, .page-fishing-games__promo-grid, .page-fishing-games__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__card-image {
        height: 180px;
    }

    .page-fishing-games__section {
        padding: 40px 15px;
    }

    /* Mobile image and video responsive */
    .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__app-content,
    .page-fishing-games__video-section,
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    
    .page-fishing-games__video-section {
        padding-top: 10px !important;
    }

    /* Button specific overrides for mobile */
    .page-fishing-games__cta-button,
    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games a[class*="button"],
    .page-fishing-games a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .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;
        flex-wrap: wrap !important;
        gap: 10px;
        flex-direction: column !important; /* Ensure vertical stacking on mobile */
    }

    /* Content area images CSS dimensions lower bound */
    .page-fishing-games img {
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-content {
        padding: 10px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 9vw, 2.2rem);
    }
    .page-fishing-games__heading {
        font-size: clamp(1.6rem, 8vw, 2rem);
    }
    .page-fishing-games__button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    .page-fishing-games__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-fishing-games__faq-answer {
        padding: 0 20px 15px 20px;
    }
}