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

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

.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.page-fishing-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(8, 22, 15, 0.7); /* Slightly transparent background for readability */
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--ll777x-text-main);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.7);
    margin-bottom: 15px;
}

.page-fishing-games__hero-description {
    font-size: 1.1rem;
    color: var(--ll777x-text-secondary);
    line-height: 1.6;
    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-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-fishing-games__btn-primary {
    background: var(--ll777x-button-gradient);
    color: var(--ll777x-text-main);
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: var(--ll777x-glow);
    border: 2px solid var(--ll777x-glow);
    box-shadow: 0 5px 15px rgba(87, 227, 141, 0.2);
}

.page-fishing-games__btn-secondary:hover {
    background: var(--ll777x-glow);
    color: var(--ll777x-background);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(87, 227, 141, 0.4);
}

.page-fishing-games__section {
    padding: 60px 20px;
    text-align: center;
    box-sizing: border-box;
}

.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.page-fishing-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--ll777x-primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(17, 168, 78, 0.3);
}

.page-fishing-games__section-title--light {
    color: var(--ll777x-text-main);
    text-shadow: 0 0 8px rgba(242, 255, 246, 0.3);
}

.page-fishing-games__section-description {
    font-size: 1.1rem;
    color: var(--ll777x-text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.page-fishing-games__text-secondary {
    color: var(--ll777x-text-secondary);
}

.page-fishing-games__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-fishing-games__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-fishing-games__text-block {
    flex: 1;
    min-width: 300px;
}

.page-fishing-games__text-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ll777x-text-secondary);
    margin-bottom: 15px;
}

.page-fishing-games__image {
    flex: 1;
    min-width: 200px;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-fishing-games__image--left {
    margin-right: 20px;
}

.page-fishing-games__image--right {
    margin-left: 20px;
}

.page-fishing-games__sub-title {
    font-size: 1.8rem;
    color: var(--ll777x-primary-color);
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-fishing-games__feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-fishing-games__feature-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ll777x-text-main);
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.page-fishing-games__feature-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--ll777x-glow);
}

.page-fishing-games__game-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(--ll777x-card-bg);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--ll777x-border);
}

.page-fishing-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-fishing-games__card-title {
    font-size: 1.5rem;
    color: var(--ll777x-primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.page-fishing-games__card-description {
    font-size: 0.95rem;
    color: var(--ll777x-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__btn-primary--small,
.page-fishing-games__btn-secondary--small {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 30px;
}

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

.page-fishing-games__step-card {
    background-color: var(--ll777x-card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: left;
    border: 1px solid var(--ll777x-border);
}

.page-fishing-games__step-title {
    font-size: 1.6rem;
    color: var(--ll777x-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.page-fishing-games__step-card p {
    font-size: 1rem;
    color: var(--ll777x-text-secondary);
    line-height: 1.7;
}

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

.page-fishing-games__dark-section {
    background-color: var(--ll777x-deep-green);
}

.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(--ll777x-card-bg);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--ll777x-border);
}

.page-fishing-games__promo-title {
    font-size: 1.5rem;
    color: var(--ll777x-glow);
    font-weight: 600;
    margin-bottom: 10px;
}

.page-fishing-games__promo-description {
    font-size: 0.95rem;
    color: var(--ll777x-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-fishing-games__security .page-fishing-games__image {
    flex: 1;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

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

.page-fishing-games__faq-item {
    background-color: var(--ll777x-card-bg);
    border: 1px solid var(--ll777x-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;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ll777x-text-main);
    cursor: pointer;
    background-color: var(--ll777x-card-bg);
    transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
    background-color: var(--ll777x-deep-green);
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
}

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

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

.page-fishing-games__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ll777x-text-secondary);
}

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

/* Hide default details marker */
.page-fishing-games__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-fishing-games__faq-item summary::marker {
    display: none;
}

.page-fishing-games__cta-final .page-fishing-games__container {
    background-color: var(--ll777x-deep-green);
    border-radius: 15px;
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--ll777x-border);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-fishing-games__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .page-fishing-games__content-wrapper--reverse {
        flex-direction: column;
    }

    .page-fishing-games__image--left,
    .page-fishing-games__image--right {
        margin: 0;
    }
    
    .page-fishing-games__hero-content {
        padding: 30px;
    }

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

    .page-fishing-games__section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
}

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

    .page-fishing-games__hero-content {
        padding: 20px;
    }

    .page-fishing-games__main-title {
        font-size: 2.2rem;
    }

    .page-fishing-games__hero-description {
        font-size: 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 {
        padding: 40px 15px;
    }

    .page-fishing-games__container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box !important;
    }

    .page-fishing-games__image,
    .page-fishing-games__card-image,
    .page-fishing-games__promo-card img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-fishing-games__game-card,
    .page-fishing-games__step-card,
    .page-fishing-games__promo-card,
    .page-fishing-games__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

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

@media (max-width: 480px) {
    .page-fishing-games__main-title {
        font-size: 1.8rem;
    }

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

    .page-fishing-games__sub-title {
        font-size: 1.4rem;
    }

    .page-fishing-games__card-title,
    .page-fishing-games__promo-title {
        font-size: 1.3rem;
    }

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