/* style/fishing-games.css */

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

.page-fishing-games {
    font-family: Arial, sans-serif;
    color: var(--s26bet-text-main); /* Default text color for dark background */
    background-color: var(--s26bet-background); /* Body background is dark */
    line-height: 1.6;
}

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

.page-fishing-games__container--flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-fishing-games__section-title {
    font-size: 2.5rem;
    color: var(--s26bet-text-main);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.3;
}

.page-fishing-games__text-block {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--s26bet-text-secondary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__card-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

.page-fishing-games__btn-primary {
    background: var(--s26bet-button-gradient);
    color: var(--s26bet-text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-fishing-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
    background: none;
    color: var(--s26bet-accent-color);
    border: 2px solid var(--s26bet-accent-color);
    box-shadow: 0 2px 10px rgba(34, 199, 104, 0.2);
}

.page-fishing-games__btn-secondary:hover {
    background-color: var(--s26bet-accent-color);
    color: var(--s26bet-background);
    transform: translateY(-2px);
}

.page-fishing-games__card-btn {
    background: var(--s26bet-button-gradient);
    color: var(--s26bet-text-main);
    border: none;
    margin-top: 15px;
    width: 100%;
}

.page-fishing-games__card-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-fishing-games__btn-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
    margin-top: 40px;
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles main offset */
    overflow: hidden;
}

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

.page-fishing-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.page-fishing-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--s26bet-gold);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-fishing-games__hero-description {
    font-size: 1.25rem;
    color: var(--s26bet-text-main);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* About Section */
.page-fishing-games__about-section {
    padding: 80px 0;
    background-color: var(--s26bet-background);
}

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

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

.page-fishing-games__feature-item {
    background-color: var(--s26bet-card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--s26bet-border);
}

.page-fishing-games__feature-title {
    font-size: 1.5rem;
    color: var(--s26bet-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games__feature-description {
    color: var(--s26bet-text-secondary);
    font-size: 1rem;
}

/* Video Section */
.page-fishing-games__video-section {
    padding: 80px 0;
}

.page-fishing-games__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    width: 100%; /* Ensure desktop width */
}

.page-fishing-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
    cursor: pointer;
}

.page-fishing-games__video-caption {
    text-align: center;
    color: var(--s26bet-text-secondary);
    margin-top: 20px;
    font-size: 0.95rem;
}

/* Games Showcase */
.page-fishing-games__games-showcase {
    padding: 80px 0;
    background-color: var(--s26bet-background);
}

.page-fishing-games__light-bg {
    background-color: var(--s26bet-background);
}

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

.page-fishing-games__game-card {
    background-color: var(--s26bet-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--s26bet-border);
    text-align: center;
    display: flex;
    flex-direction: column;
}

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

.page-fishing-games__game-title {
    font-size: 1.35rem;
    color: var(--s26bet-text-main);
    margin: 20px 15px 10px;
    font-weight: bold;
}

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

/* How to Play Section */
.page-fishing-games__how-to-play {
    padding: 80px 0;
}

.page-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__step-item {
    background-color: var(--s26bet-card-bg);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 1px solid var(--s26bet-border);
}

.page-fishing-games__step-title {
    font-size: 1.6rem;
    color: var(--s26bet-gold);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-fishing-games__step-description {
    color: var(--s26bet-text-secondary);
    font-size: 1.05rem;
}

.page-fishing-games__step-description a {
    color: var(--s26bet-accent-color);
    text-decoration: underline;
}

.page-fishing-games__step-description a:hover {
    color: var(--s26bet-glow);
}

/* Tips & Strategies Section */
.page-fishing-games__tips-strategies {
    padding: 80px 0;
}

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

.page-fishing-games__tip-card {
    background-color: var(--s26bet-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--s26bet-border);
    text-align: center;
}

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

.page-fishing-games__tip-title {
    font-size: 1.35rem;
    color: var(--s26bet-text-main);
    margin: 20px 15px 10px;
    font-weight: bold;
}

.page-fishing-games__tip-description {
    color: var(--s26bet-text-secondary);
    font-size: 0.95rem;
    padding: 0 15px 20px;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
    padding: 80px 0;
}

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

.page-fishing-games__promo-card {
    background-color: var(--s26bet-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--s26bet-border);
    text-align: center;
    display: flex;
    flex-direction: column;
}

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

.page-fishing-games__promo-title {
    font-size: 1.35rem;
    color: var(--s26bet-gold);
    margin: 20px 15px 10px;
    font-weight: bold;
}

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

/* Mobile Experience Section */
.page-fishing-games__mobile-experience {
    padding: 80px 0;
}

.page-fishing-games__mobile-content {
    flex: 1;
    text-align: left;
}

.page-fishing-games__mobile-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-fishing-games__mobile-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: block;
}

.page-fishing-games__mobile-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.page-fishing-games__mobile-features li {
    color: var(--s26bet-text-secondary);
    font-size: 1.05rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-fishing-games__mobile-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--s26bet-accent-color);
}

/* FAQ Section */
.page-fishing-games__faq-section {
    padding: 80px 0;
}

.page-fishing-games__faq-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-fishing-games__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--s26bet-text-main);
    cursor: pointer;
    outline: none;
}

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

.page-fishing-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
    color: var(--s26bet-gold);
}

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

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

.page-fishing-games__faq-answer p {
    margin-bottom: 10px;
    text-align: left;
}

.page-fishing-games__faq-answer a {
    color: var(--s26bet-accent-color);
    text-decoration: underline;
}

.page-fishing-games__faq-answer a:hover {
    color: var(--s26bet-glow);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-fishing-games__container--flex {
        flex-direction: column;
        text-align: center;
    }

    .page-fishing-games__mobile-content {
        order: 2;
        text-align: center;
    }

    .page-fishing-games__mobile-image-wrapper {
        order: 1;
        margin-bottom: 40px;
    }

    .page-fishing-games__mobile-features {
        text-align: center;
        padding-left: 0;
    }

    .page-fishing-games__mobile-features li {
        padding-left: 0;
    }

    .page-fishing-games__mobile-features li::before {
        position: static;
        margin-right: 5px;
    }
}

@media (max-width: 768px) {
    .page-fishing-games__section-title {
        font-size: 2rem;
    }

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

    .page-fishing-games__hero-description,
    .page-fishing-games__text-block {
        font-size: 1rem;
    }

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

    .page-fishing-games__btn-primary,
    .page-fishing-games__btn-secondary,
    .page-fishing-games a[class*="button"],
    .page-fishing-games a[class*="btn"] {
        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__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__hero-section,
    .page-fishing-games__about-section,
    .page-fishing-games__video-section,
    .page-fishing-games__games-showcase,
    .page-fishing-games__how-to-play,
    .page-fishing-games__tips-strategies,
    .page-fishing-games__promotions-section,
    .page-fishing-games__mobile-experience,
    .page-fishing-games__faq-section {
        padding: 40px 0;
    }

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

    /* Images responsive */
    .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 {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-fishing-games__video-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    /* Video responsive */
    .page-fishing-games video,
    .page-fishing-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-fishing-games__video-section,
    .page-fishing-games__video-container,
    .page-fishing-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    
    .page-fishing-games__video-section {
        padding-top: 10px !important;
    }
    
    .page-fishing-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-fishing-games__game-image,
    .page-fishing-games__tip-image,
    .page-fishing-games__promo-image {
        height: auto; /* Allow height to adjust for mobile */
    }

    .page-fishing-games__faq-item summary {
        font-size: 1.05rem;
        padding: 15px 20px;
    }

    .page-fishing-games__faq-answer {
        font-size: 0.95rem;
        padding: 0 20px 15px;
    }
}