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

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

.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 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;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
    background-color: var(--deep-green-color);
}

.page-fishing-games__hero-image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__main-title {
    color: var(--gold-color);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
}

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

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-fishing-games__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* Always white for primary button */
    border: 2px solid var(--glow-color);
}

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

.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 {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: var(--glow-color);
    color: var(--card-bg-color);
}

/* General Section Styles */
.page-fishing-games__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__text-secondary {
    color: var(--text-secondary-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.05em;
}

.page-fishing-games__dark-section {
    background-color: var(--card-bg-color);
    padding: 60px 0;
}

.page-fishing-games__why-anhem888-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__promotions-section {
    padding: 60px 0;
}

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

.page-fishing-games__feature-item,
.page-fishing-games__tip-item {
    background-color: var(--background-color-page);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-fishing-games__feature-item:hover,
.page-fishing-games__tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__feature-item img,
.page-fishing-games__tip-item img {
    
    
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--glow-color);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
    max-width: 100%; /* Ensure responsive */
    height: auto; /* Ensure responsive */
    display: block; /* Ensure responsive */
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__feature-description,
.page-fishing-games__tip-description {
    color: var(--text-secondary-color);
    font-size: 0.95em;
}

/* Game Cards Grid */
.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: var(--card-bg-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

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

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

.page-fishing-games__game-card-content {
    padding: 20px;
    text-align: center;
}

.page-fishing-games__game-card-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-fishing-games__game-card-title a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__game-card-title a:hover {
    color: var(--glow-color);
}

.page-fishing-games__game-card-description {
    color: var(--text-secondary-color);
    font-size: 0.95em;
}

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

/* Steps Grid */
.page-fishing-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-fishing-games__step-item {
    background-color: var(--background-color-page);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

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

.page-fishing-games__step-item img {
    
    
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--glow-color);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
    max-width: 100%; /* Ensure responsive */
    height: auto; /* Ensure responsive */
    display: block; /* Ensure responsive */
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__step-description {
    color: var(--text-secondary-color);
    font-size: 0.95em;
}

/* Promotions Section */
.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: var(--background-color-page);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

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

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

.page-fishing-games__promo-title {
    font-size: 1.4em;
    color: var(--glow-color);
    padding: 20px 20px 10px;
    font-weight: bold;
}

.page-fishing-games__promo-description {
    color: var(--text-secondary-color);
    padding: 0 20px 20px;
    font-size: 0.95em;
}

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

.page-fishing-games__faq-list {
    margin-top: 40px;
}

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

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

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

.page-fishing-games__faq-question:hover {
    background-color: var(--primary-color);
}

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

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

.page-fishing-games__faq-answer {
    padding: 20px;
    color: var(--text-secondary-color);
    background-color: var(--card-bg-color);
    border-top: 1px solid var(--divider-color);
    font-size: 1em;
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--deep-green-color);
    border-top: 5px solid var(--glow-color);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-fishing-games__hero-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding: 40px 15px;
    }

    .page-fishing-games__hero-image {
        height: 300px;
        margin-bottom: 20px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-fishing-games__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 25px;
        font-size: 1em;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.5em, 6vw, 2.2em);
    }

    .page-fishing-games__why-anhem888-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-final-section {
        padding: 40px 0;
    }

    .page-fishing-games__container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-fishing-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__game-card-image {
        height: 150px;
    }

    .page-fishing-games__promo-image {
        height: 120px;
    }

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

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

@media (max-width: 480px) {
    .page-fishing-games__hero-image {
        height: 200px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.6em, 8vw, 2em);
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.4em, 7vw, 1.8em);
    }

    .page-fishing-games__feature-item img,
    .page-fishing-games__tip-item img {
        
        
    }

    .page-fishing-games__step-item img {
        
        
    }
}