/* style/fishing-games.css */

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

.page-fishing-games {
    background-color: var(--page-fishing-games-bg);
    color: var(--page-fishing-games-text-main);
    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;
}

/* Typography */
.page-fishing-games__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for H1 */
    font-weight: bold;
    color: var(--page-fishing-games-gold);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-fishing-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: bold;
    color: var(--page-fishing-games-gold);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--page-fishing-games-primary-color);
    border-radius: 2px;
}

.page-fishing-games__hero-description,
.page-fishing-games__text-block,
.page-fishing-games__feature-description,
.page-fishing-games__step-description,
.page-fishing-games__promotion-description,
.page-fishing-games__faq-answer p {
    color: var(--page-fishing-games-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.page-fishing-games__highlight {
    color: var(--page-fishing-games-glow);
    font-weight: bold;
}

/* 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;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
}

.page-fishing-games__btn-primary {
    background: var(--page-fishing-games-button-gradient);
    color: var(--page-fishing-games-text-main);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 255, 100, 0.3);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 100, 0.4);
    opacity: 0.9;
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: var(--page-fishing-games-primary-color);
    border: 2px solid var(--page-fishing-games-primary-color);
    margin-left: 20px;
}

.page-fishing-games__btn-secondary:hover {
    background: var(--page-fishing-games-primary-color);
    color: var(--page-fishing-games-text-main);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 150, 50, 0.3);
}

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

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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding: 60px 0; /* Small top padding, body handles header offset */
    padding-top: 10px; /* Small decorative padding */
    box-sizing: border-box;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and text */
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-fishing-games__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

/* General Sections */
.page-fishing-games__about-section,
.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
    padding: 80px 0;
}

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

/* Cards */
.page-fishing-games__card {
    background-color: var(--page-fishing-games-card-bg);
    border: 1px solid var(--page-fishing-games-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-fishing-games__feature-image,
.page-fishing-games__strategy-image {
    width: 100%;
    height: auto;
    max-width: 100%; /* Ensure images are responsive */
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Prevent extra space below image */
}

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

/* Strategy Section */
.page-fishing-games__strategy-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.page-fishing-games__strategy-image {
    flex: 0 0 45%; /* Fixed width for image on desktop */
    max-width: 45%;
}

.page-fishing-games__strategy-text {
    flex: 1;
    text-align: left;
}

.page-fishing-games__strategy-list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__strategy-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.page-fishing-games__strategy-list li strong {
    color: var(--page-fishing-games-glow);
}

/* Promotions Section */
.page-fishing-games__promotions-section .page-fishing-games__text-block {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.page-fishing-games__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: var(--page-fishing-games-deep-green);
    color: var(--page-fishing-games-gold);
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    border-bottom: 1px solid var(--page-fishing-games-border);
}

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--page-fishing-games-glow);
    transition: transform 0.3s ease;
}

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

.page-fishing-games__faq-answer {
    padding: 20px 25px;
    color: var(--page-fishing-games-text-secondary);
    text-align: left;
    font-size: 1.1rem;
}

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

/* CTA Section */
.page-fishing-games__cta-section .page-fishing-games__container {
    background-color: var(--page-fishing-games-deep-green); /* Darker background for CTA */
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__cta-section .page-fishing-games__section-title {
    color: var(--page-fishing-games-gold);
    margin-bottom: 20px;
}

.page-fishing-games__cta-section .page-fishing-games__text-block {
    color: var(--page-fishing-games-text-main);
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-fishing-games__cta-section a {
    color: var(--page-fishing-games-glow); /* Ensure link contrast on dark bg */
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__strategy-content {
        flex-direction: column;
        align-items: center;
    }

    .page-fishing-games__strategy-image {
        max-width: 80%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__container {
        padding: 0 15px;
    }

    .page-fishing-games__hero-section {
        padding: 40px 0;
        padding-top: 10px !important; /* body handles header offset, small decorative padding */
    }

    .page-fishing-games__hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-fishing-games__hero-cta-buttons,
    .page-fishing-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-fishing-games__hero-cta-buttons,
    .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;
    }

    .page-fishing-games__about-section,
    .page-fishing-games__features-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-section {
        padding: 50px 0;
    }

    .page-fishing-games__features-grid,
    .page-fishing-games__steps-grid,
    .page-fishing-games__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Image responsiveness */
    .page-fishing-games img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-fishing-games__section,
    .page-fishing-games__card,
    .page-fishing-games__container,
    .page-fishing-games__hero-image-wrapper,
    .page-fishing-games__strategy-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }

    .page-fishing-games__strategy-image {
        max-width: 100%;
        flex: none;
    }

    .page-fishing-games__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-fishing-games__faq-answer {
        padding: 15px 20px;
    }

    .page-fishing-games__cta-section .page-fishing-games__container {
        padding: 40px 20px;
    }
}

/* Ensure minimum image size is respected, but allow responsiveness */
.page-fishing-games img:not(.page-fishing-games__hero-image) { /* Exclude hero image from this min-size logic if it's already large */
    min-width: 200px;
    min-height: 200px;
}

/* Ensure content area images are not too small */
.page-fishing-games__content-area img,
.page-fishing-games__feature-card img,
.page-fishing-games__strategy-section img {
    min-width: 200px;
    min-height: 200px;
}

/* No CSS filter for images */
.page-fishing-games img {
    filter: none !important;
}

/* For links within text blocks */
.page-fishing-games__text-block a,
.page-fishing-games__faq-answer a {
    color: var(--page-fishing-games-glow); /* Ensure contrast on dark bg */
    text-decoration: underline;
    font-weight: bold;
}

.page-fishing-games__text-block a:hover,
.page-fishing-games__faq-answer a:hover {
    color: var(--page-fishing-games-gold);
}