/* style/fishing-games.css */

/* Custom Colors */
:root {
    --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;
    --fishing-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

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

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    background-color: var(--fishing-games-deep-green);
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 600px; /* Adjust as needed */
    display: block;
    margin-bottom: 20px;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.page-fishing-games__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--fishing-games-glow);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.6);
}

.page-fishing-games__hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--fishing-games-text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.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.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background: var(--fishing-games-button-gradient);
    color: var(--fishing-games-text-main);
    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-glow);
    border: 2px solid var(--fishing-games-glow);
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--fishing-games-glow);
    color: var(--fishing-games-deep-green);
    transform: translateY(-2px);
}

/* General Section Styles */
.page-fishing-games__introduction-section,
.page-fishing-games__games-showcase,
.page-fishing-games__guide-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__security-section,
.page-fishing-games__faq-section,
.page-fishing-games__conclusion-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--fishing-games-divider);
}

.page-fishing-games__section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--fishing-games-glow);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.4);
}

.page-fishing-games__text-block {
    font-size: 1.1rem;
    color: var(--fishing-games-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-fishing-games__card {
    background-color: var(--fishing-games-card-bg);
    border: 1px solid var(--fishing-games-border);
    border-radius: 12px;
    overflow: hidden;
    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;
    color: var(--fishing-games-text-main);
}

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

.page-fishing-games__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-fishing-games__card-title {
    font-size: 1.6rem;
    color: var(--fishing-games-glow);
    margin: 20px 20px 10px 20px;
    font-weight: bold;
}

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

.page-fishing-games__card-button {
    margin: 0 20px 20px 20px;
    width: calc(100% - 40px);
}

/* Guide Section */
.page-fishing-games__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games__guide-list li {
    background-color: var(--fishing-games-card-bg);
    border: 1px solid var(--fishing-games-border);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__guide-heading {
    font-size: 1.4rem;
    color: var(--fishing-games-glow);
    margin-bottom: 10px;
}

.page-fishing-games__guide-list p {
    font-size: 1rem;
    color: var(--fishing-games-text-secondary);
}

.page-fishing-games__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Strategy Section */
.page-fishing-games__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games__strategy-list li {
    background-color: var(--fishing-games-card-bg);
    border: 1px solid var(--fishing-games-border);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__strategy-heading {
    font-size: 1.4rem;
    color: var(--fishing-games-glow);
    margin-bottom: 10px;
}

.page-fishing-games__strategy-list p {
    font-size: 1rem;
    color: var(--fishing-games-text-secondary);
}

.page-fishing-games__strategy-cta {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-fishing-games__text-block--note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: var(--fishing-games-text-secondary);
}

/* Security Section */
.page-fishing-games__security-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-fishing-games__security-features li {
    background-color: var(--fishing-games-card-bg);
    border: 1px solid var(--fishing-games-border);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__feature-heading {
    font-size: 1.4rem;
    color: var(--fishing-games-glow);
    margin-bottom: 10px;
}

.page-fishing-games__security-features p {
    font-size: 1rem;
    color: var(--fishing-games-text-secondary);
}

/* FAQ Section */
.page-fishing-games__faq-items {
    margin-top: 40px;
}

.page-fishing-games__faq-item {
    background-color: var(--fishing-games-card-bg);
    border: 1px solid var(--fishing-games-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    border-bottom: none;
}

.page-fishing-games__faq-question::-webkit-details-marker,
.page-fishing-games__faq-question::marker {
    display: none;
}

.page-fishing-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    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;
    font-size: 1rem;
    color: var(--fishing-games-text-secondary);
}

/* Conclusion Section */
.page-fishing-games__conclusion-section .page-fishing-games__cta-buttons {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__hero-image {
        max-height: 450px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-fishing-games__hero-description {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    }
    .page-fishing-games__card-title {
        font-size: 1.4rem;
    }
    .page-fishing-games__guide-heading,
    .page-fishing-games__strategy-heading,
    .page-fishing-games__feature-heading {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-fishing-games__hero-image {
        max-height: 300px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-fishing-games__hero-description {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    .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: 1rem;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 0 !important;
    }
    .page-fishing-games__introduction-section,
    .page-fishing-games__games-showcase,
    .page-fishing-games__guide-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__security-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__conclusion-section {
        padding: 40px 0;
    }
    .page-fishing-games__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem);
        margin-bottom: 30px;
    }
    .page-fishing-games__text-block {
        font-size: 1rem;
    }
    .page-fishing-games__game-cards {
        grid-template-columns: 1fr;
    }
    .page-fishing-games__card-image {
        height: 180px;
    }
    .page-fishing-games__card-title {
        font-size: 1.2rem;
    }
    .page-fishing-games__card-description {
        font-size: 0.95rem;
    }
    .page-fishing-games__guide-list li,
    .page-fishing-games__strategy-list li,
    .page-fishing-games__security-features li {
        padding: 20px;
    }
    .page-fishing-games__guide-heading,
    .page-fishing-games__strategy-heading,
    .page-fishing-games__feature-heading {
        font-size: 1.1rem;
    }
    .page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    .page-fishing-games__faq-answer {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    /* Mobile image responsiveness */
    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-fishing-games__video-section {
        padding-top: 10px !important;
    }
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games__promotion-cards {
        grid-template-columns: 1fr;
    }
}

/* Ensure images are not filtered */
.page-fishing-games img {
    filter: none; /* Absolutely no CSS filters to change image colors */
}

/* Content area images minimum size enforcement */
.page-fishing-games__hero-image,
.page-fishing-games__card-image,
.page-fishing-games__image-full-width {
    min-width: 200px;
    min-height: 200px;
}

/* Ensure no specific width/height for content images that can be smaller than 200px */
.page-fishing-games__card-image {
    width: 100%; /* Ensures it fills card width */
    height: 250px; /* Fixed height, must be >= 200px */
}

.page-fishing-games__image-full-width {
    width: 100%;
    height: auto;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
}