/* style/fishing-games-jackpot-analysis.css */

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

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

.page-fishing-games-jackpot-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
    background-color: var(--color-background);
}

.page-fishing-games-jackpot-analysis__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-fishing-games-jackpot-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Min size requirement */
}

.page-fishing-games-jackpot-analysis__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--color-text-main);
}

.page-fishing-games-jackpot-analysis__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--color-gold);
    margin-bottom: 20px;
    max-width: 100%;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-fishing-games-jackpot-analysis__description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.page-fishing-games-jackpot-analysis__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.page-fishing-games-jackpot-analysis__btn-primary,
.page-fishing-games-jackpot-analysis__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-fishing-games-jackpot-analysis__btn-primary {
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-main);
    border: none;
}

.page-fishing-games-jackpot-analysis__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--color-button-gradient-start), 0.3);
}

.page-fishing-games-jackpot-analysis__btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.page-fishing-games-jackpot-analysis__btn-secondary:hover {
    background-color: rgba(var(--color-primary), 0.1);
    transform: translateY(-2px);
}

.page-fishing-games-jackpot-analysis__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--color-background);
    color: var(--color-text-main);
}

.page-fishing-games-jackpot-analysis__section-title {
    font-size: 2.2rem;
    color: var(--color-gold);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
}

.page-fishing-games-jackpot-analysis__sub-title {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-fishing-games-jackpot-analysis p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.page-fishing-games-jackpot-analysis__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px 0;
    border-radius: 10px;
    object-fit: cover;
    min-height: 200px; /* Min size requirement */
}

.page-fishing-games-jackpot-analysis__image-content {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    object-fit: cover;
    min-height: 200px; /* Min size requirement */
}

.page-fishing-games-jackpot-analysis__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--color-text-secondary);
}

.page-fishing-games-jackpot-analysis__list li {
    margin-bottom: 10px;
    color: var(--color-text-secondary);
}

.page-fishing-games-jackpot-analysis__faq-section {
    background-color: var(--color-card-bg);
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-fishing-games-jackpot-analysis__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-fishing-games-jackpot-analysis__faq-item {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--color-text-main);
}

.page-fishing-games-jackpot-analysis__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--color-gold);
    background-color: var(--color-deep-green);
    border-bottom: 1px solid var(--color-border);
}

.page-fishing-games-jackpot-analysis__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-fishing-games-jackpot-analysis__faq-item summary::marker {
    display: none;
}

.page-fishing-games-jackpot-analysis__faq-qtext {
    flex-grow: 1;
}

.page-fishing-games-jackpot-analysis__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--color-gold);
}

.page-fishing-games-jackpot-analysis__faq-answer {
    padding: 20px;
    font-size: 1rem;
    color: var(--color-text-secondary);
    background-color: var(--color-card-bg);
}

.page-fishing-games-jackpot-analysis__faq-answer p {
    margin-bottom: 0;
}

.page-fishing-games-jackpot-analysis__cta-bottom {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.page-fishing-games-jackpot-analysis__image-bottom {
    margin-top: 60px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-fishing-games-jackpot-analysis__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-fishing-games-jackpot-analysis__section-title {
        font-size: 2rem;
    }
    .page-fishing-games-jackpot-analysis__sub-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-jackpot-analysis__hero-content {
        padding: 30px 15px;
    }
    .page-fishing-games-jackpot-analysis__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        padding: 0 5px; /* Prevent text overflow on very small screens */
    }
    .page-fishing-games-jackpot-analysis__description {
        font-size: 1rem;
    }
    .page-fishing-games-jackpot-analysis__cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }
    .page-fishing-games-jackpot-analysis__btn-primary,
    .page-fishing-games-jackpot-analysis__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-fishing-games-jackpot-analysis__content-area {
        padding: 40px 15px;
    }
    .page-fishing-games-jackpot-analysis__section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .page-fishing-games-jackpot-analysis__sub-title {
        font-size: 1.3rem;
    }
    .page-fishing-games-jackpot-analysis p,
    .page-fishing-games-jackpot-analysis li {
        font-size: 0.95rem;
    }
    .page-fishing-games-jackpot-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-height: 200px !important; /* Ensure min size */
    }
    .page-fishing-games-jackpot-analysis__hero-image-wrapper,
    .page-fishing-games-jackpot-analysis__content-area,
    .page-fishing-games-jackpot-analysis__faq-section,
    .page-fishing-games-jackpot-analysis__cta-bottom {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-fishing-games-jackpot-analysis__hero-section {
        padding-left: 0;
        padding-right: 0;
        padding-top: 10px !important;
    }
    .page-fishing-games-jackpot-analysis__faq-item summary {
        font-size: 1rem;
        padding: 15px;
    }
    .page-fishing-games-jackpot-analysis__faq-answer {
        padding: 15px;
    }
    .page-fishing-games-jackpot-analysis__cta-bottom {
        flex-wrap: wrap !important;
        gap: 15px;
    }
}

/* Ensure content images are not filtered */
.page-fishing-games-jackpot-analysis img {
    filter: none; /* Absolutely no CSS filters on images */
}