/* style/fishing-games.css */

/* Custom Colors */
:root {
    --dp568-primary-color: #11A84E;
    --dp568-secondary-color: #22C768;
    --dp568-card-bg: #11271B;
    --dp568-background: #08160F;
    --dp568-text-main: #F2FFF6;
    --dp568-text-secondary: #A7D9B8;
    --dp568-border: #2E7A4E;
    --dp568-glow: #57E38D;
    --dp568-gold: #F2C14E;
    --dp568-divider: #1E3A2A;
    --dp568-deep-green: #0A4B2C;
}

.page-fishing-games {
    font-family: 'Arial', sans-serif;
    background-color: var(--dp568-background);
    color: var(--dp568-text-main);
    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 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0;
    background-color: var(--dp568-background);
    position: relative;
    overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 10;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -150px; /* Overlap slightly for visual effect, but not text on image */
    background: linear-gradient(0deg, var(--dp568-background) 70%, transparent 100%);
    box-sizing: border-box;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--dp568-text-main);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

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

.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: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: var(--dp568-text-main);
    border: 2px solid transparent;
}

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

.page-fishing-games__btn-secondary {
    background-color: transparent;
    color: var(--dp568-secondary-color);
    border: 2px solid var(--dp568-secondary-color);
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--dp568-secondary-color);
    color: var(--dp568-background);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.4);
}

/* Sections */
.page-fishing-games__introduction-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__promotions-section,
.page-fishing-games__why-choose-section,
.page-fishing-games__cta-final-section {
    background-color: var(--dp568-background);
    padding: 80px 0;
    color: var(--dp568-text-main);
}

.page-fishing-games__features-section,
.page-fishing-games__game-types-section,
.page-fishing-games__tips-section,
.page-fishing-games__faq-section {
    background-color: var(--dp568-card-bg);
    padding: 80px 0;
    color: var(--dp568-text-main);
}

.page-fishing-games__dark-bg {
    background-color: var(--dp568-background);
    color: var(--dp568-text-main);
}

.page-fishing-games__light-bg {
    background-color: var(--dp568-card-bg);
    color: var(--dp568-text-main);
}

.page-fishing-games__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dp568-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    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: var(--dp568-secondary-color);
    border-radius: 2px;
}

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

.page-fishing-games__text-block a {
    color: var(--dp568-secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-fishing-games__text-block a:hover {
    text-decoration: underline;
}

/* Cards */
.page-fishing-games__card {
    background-color: var(--dp568-card-bg);
    border: 1px solid var(--dp568-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-fishing-games__feature-title,
.page-fishing-games__game-title {
    font-size: 1.5rem;
    color: var(--dp568-text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__game-title a {
    color: var(--dp568-text-main);
    text-decoration: none;
}

.page-fishing-games__game-title a:hover {
    color: var(--dp568-secondary-color);
    text-decoration: underline;
}

.page-fishing-games__feature-description,
.page-fishing-games__game-description {
    font-size: 1rem;
    color: var(--dp568-text-secondary);
    line-height: 1.7;
}

/* How to Play Steps */
.page-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.page-fishing-games__step-item {
    background-color: var(--dp568-card-bg);
    border: 1px solid var(--dp568-border);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__step-title {
    font-size: 1.8rem;
    color: var(--dp568-gold);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-fishing-games__step-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 2px solid var(--dp568-secondary-color);
    box-shadow: 0 0 15px var(--dp568-secondary-color);
    display: block;
}

.page-fishing-games__step-description {
    font-size: 1.1rem;
    color: var(--dp568-text-secondary);
    line-height: 1.8;
    max-width: 800px;
}

/* Promotions */
.page-fishing-games__promo-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-fishing-games__promo-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page-fishing-games__promo-title {
    font-size: 1.6rem;
    color: var(--dp568-text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__promo-description {
    font-size: 1rem;
    color: var(--dp568-text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

/* Tips Section */
.page-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.page-fishing-games__tips-item {
    background-color: var(--dp568-background);
    border: 1px solid var(--dp568-border);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__tips-title {
    font-size: 1.6rem;
    color: var(--dp568-secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__tips-description {
    font-size: 1rem;
    color: var(--dp568-text-secondary);
    line-height: 1.7;
}

/* Why Choose Section */
.page-fishing-games__advantages-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-fishing-games__advantages-item {
    text-align: center;
}

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

.page-fishing-games__advantages-description {
    font-size: 1rem;
    color: var(--dp568-text-secondary);
    line-height: 1.7;
}

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

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dp568-text-main);
    background-color: var(--dp568-deep-green);
    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(--dp568-primary-color);
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    color: var(--dp568-text-main);
}

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

.page-fishing-games__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--dp568-text-secondary);
    line-height: 1.7;
    border-top: 1px solid var(--dp568-divider);
}

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

/* Final CTA */
.page-fishing-games__cta-final-section {
    text-align: center;
    padding: 100px 0;
    background-color: var(--dp568-deep-green);
}

.page-fishing-games__cta-content {
    max-width: 900px;
}

.page-fishing-games__btn-large {
    padding: 18px 40px;
    font-size: 1.3rem;
    border-radius: 10px;
}

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

@media (max-width: 768px) {
    .page-fishing-games__hero-content {
        margin-top: -50px;
        padding: 20px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .page-fishing-games__hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

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

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        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__section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 30px;
    }

    .page-fishing-games__introduction-section,
    .page-fishing-games__features-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__game-types-section,
    .page-fishing-games__promotions-section,
    .page-fishing-games__tips-section,
    .page-fishing-games__why-choose-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__cta-final-section {
        padding: 40px 0;
    }

    .page-fishing-games__container {
        padding: 0 15px;
    }

    .page-fishing-games__features-grid,
    .page-fishing-games__game-cards-grid,
    .page-fishing-games__promo-list,
    .page-fishing-games__advantages-list {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .page-fishing-games__feature-image,
    .page-fishing-games__game-image,
    .page-fishing-games__step-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__step-item {
        padding: 25px;
    }

    .page-fishing-games__step-title {
        font-size: 1.5rem;
    }

    .page-fishing-games__promo-title,
    .page-fishing-games__tips-title,
    .page-fishing-games__advantages-title {
        font-size: 1.4rem;
    }

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

    .page-fishing-games__faq-toggle {
        font-size: 1.5rem;
    }

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

    .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__cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-fishing-games__hero-content {
        margin-top: -30px;
        padding: 15px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }

    .page-fishing-games__hero-description {
        font-size: 0.9rem;
    }

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
    }

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

    .page-fishing-games__text-block {
        font-size: 0.95rem;
    }

    .page-fishing-games__step-title {
        font-size: 1.3rem;
    }

    .page-fishing-games__promo-title,
    .page-fishing-games__tips-title,
    .page-fishing-games__advantages-title {
        font-size: 1.2rem;
    }

    .page-fishing-games__faq-question {
        font-size: 0.95rem;
    }
}