/* style/fishing-games.css */

/* Base styles for the page content, assuming dark body background */
.page-fishing-games {
    font-family: 'Arial', sans-serif; /* Example font */
    line-height: 1.6;
    color: #F2FFF6; /* Text Main - for dark background */
    background-color: #08160F; /* Background color */
}

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

.page-fishing-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    background-color: #0A4B2C; /* Deep Green for hero background */
    overflow: hidden;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px; /* Limit height of hero image */
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px; /* Adjust to slightly overlap or position below image */
    background: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__description {
    font-size: 1.1rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%; /* Ensure container takes full width for flex-wrap */
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
    transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: #2AD16F; /* Green Gold for text */
    border: 2px solid #2AD16F;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.2);
}

.page-fishing-games__btn-secondary:hover {
    background-color: #2AD16F;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.4);
    transform: translateY(-2px);
}

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #F2C14E; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2AD16F; /* Green Gold */
    border-radius: 2px;
}

.page-fishing-games__text-block {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: justify;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__intro-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__strategy-section,
.page-fishing-games__security-section,
.page-fishing-games__faq-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

.page-fishing-games__features-section,
.page-fishing-games__weapons-section,
.page-fishing-games__promotions-section,
.page-fishing-games__download-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
}

.page-fishing-games__dark-section {
    background-color: #08160F; /* Background */
}

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

.page-fishing-games__feature-card,
.page-fishing-games__promo-item,
.page-fishing-games__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__feature-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__feature-title,
.page-fishing-games__step-title,
.page-fishing-games__weapon-title,
.page-fishing-games__strategy-title,
.page-fishing-games__promo-title,
.page-fishing-games__security-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-fishing-games__feature-description,
.page-fishing-games__step-description,
.page-fishing-games__weapon-description,
.page-fishing-games__strategy-description,
.page-fishing-games__promo-description,
.page-fishing-games__security-description {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: justify;
}

.page-fishing-games__step-list,
.page-fishing-games__weapon-list,
.page-fishing-games__strategy-list,
.page-fishing-games__promo-list,
.page-fishing-games__security-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-fishing-games__step-item,
.page-fishing-games__weapon-item,
.page-fishing-games__strategy-item,
.page-fishing-games__security-item {
    background-color: #11271B; /* Card BG */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__how-to-play-section .page-fishing-games__step-item {
    counter-increment: step-counter;
    position: relative;
    text-align: left;
    padding-left: 70px;
}

.page-fishing-games__how-to-play-section .page-fishing-games__step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 30px;
    width: 40px;
    height: 40px;
    background-color: #2AD16F; /* Green Gold */
    color: #08160F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(42, 209, 111, 0.4);
}

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

.page-fishing-games__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid #2E7A4E;
}

/* FAQ styles */
.page-fishing-games__faq-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 15px;
    border: 1px solid #2E7A4E; /* Border */
    overflow: hidden;
}

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    background-color: #1E3A2A; /* Divider for summary background */
    border-bottom: 1px solid #2E7A4E;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-fishing-games__faq-question:hover {
    background-color: #2E7A4E; /* Border */
}

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

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

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-fishing-games__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: #2AD16F; /* Green Gold */
    font-weight: 300;
}

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

.page-fishing-games__faq-answer {
    padding: 20px 30px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: justify;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-fishing-games__hero-content {
        margin-top: -50px;
        padding: 30px 15px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }
    .page-fishing-games__section-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }
    .page-fishing-games__feature-card,
    .page-fishing-games__promo-item,
    .page-fishing-games__faq-item,
    .page-fishing-games__step-item,
    .page-fishing-games__weapon-item,
    .page-fishing-games__strategy-item,
    .page-fishing-games__security-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__container {
        padding: 0 15px;
    }
    .page-fishing-games__hero-section {
        padding-bottom: 40px;
    }
    .page-fishing-games__hero-content {
        margin-top: -30px;
        padding: 20px 15px;
        border-radius: 10px;
    }
    .page-fishing-games__main-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-fishing-games__description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .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;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
        margin-bottom: 30px;
    }
    .page-fishing-games__text-block {
        font-size: 0.9rem;
    }

    .page-fishing-games__intro-section,
    .page-fishing-games__features-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__weapons-section,
    .page-fishing-games__strategy-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__security-section,
    .page-fishing-games__download-section,
    .page-fishing-games__faq-section {
        padding: 40px 0;
    }
    
    .page-fishing-games img {
        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__feature-card,
    .page-fishing-games__promo-item,
    .page-fishing-games__faq-item,
    .page-fishing-games__step-item,
    .page-fishing-games__weapon-item,
    .page-fishing-games__strategy-item,
    .page-fishing-games__security-item,
    .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;
    }

    .page-fishing-games__hero-section {
        padding-top: 10px !important; /* body already handles offset */
    }

    .page-fishing-games__step-item {
        padding-left: 50px;
    }
    .page-fishing-games__step-item::before {
        left: 15px;
        top: 25px;
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    .page-fishing-games__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-fishing-games__faq-answer {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    .page-fishing-games__faq-toggle {
        font-size: 1.5rem;
    }
}