/* style/resources-ok9-lottery-game-analysis.css */

/* Variables for colors */
:root {
    --page-ok9-primary-bg: #0D1117;
    --page-ok9-secondary-bg: #1A1F27;
    --page-ok9-accent-color: #FFD700;
    --page-ok9-text-light: #F0F2F5;
    --page-ok9-text-dark: #0D1117;
    --page-ok9-text-accent: #FFD700;
    --page-ok9-border-color: #333;
}

.page-resources-ok9-lottery-game-analysis {
    font-family: 'Arial', sans-serif;
    color: var(--page-ok9-text-light);
    background-color: var(--page-ok9-primary-bg);
    line-height: 1.6;
}

.page-resources-ok9-lottery-game-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-ok9-lottery-game-analysis__hero-section {
    background: linear-gradient(135deg, var(--page-ok9-primary-bg) 0%, #1a222f 100%);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--page-ok9-accent-color);
}

.page-resources-ok9-lottery-game-analysis__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(13, 17, 23, 0) 70%);
    animation: rotateGradient 20s linear infinite;
    z-index: 0;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-resources-ok9-lottery-game-analysis__hero-section > * {
    position: relative;
    z-index: 1;
}

.page-resources-ok9-lottery-game-analysis__main-title {
    font-size: 3.5em;
    color: var(--page-ok9-accent-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: bold;
}

.page-resources-ok9-lottery-game-analysis__hero-description {
    font-size: 1.3em;
    color: var(--page-ok9-text-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-resources-ok9-lottery-game-analysis__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.page-resources-ok9-lottery-game-analysis__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources-ok9-lottery-game-analysis__btn--primary {
    background-color: var(--page-ok9-accent-color);
    color: var(--page-ok9-text-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-ok9-lottery-game-analysis__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-ok9-lottery-game-analysis__btn--secondary {
    background-color: transparent;
    color: var(--page-ok9-accent-color);
    border: 2px solid var(--page-ok9-accent-color);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.page-resources-ok9-lottery-game-analysis__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Content Section */
.page-resources-ok9-lottery-game-analysis__content-section {
    padding: 60px 0;
    background-color: var(--page-ok9-primary-bg);
}

.page-resources-ok9-lottery-game-analysis__section-title {
    font-size: 2.5em;
    color: var(--page-ok9-accent-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 15px;
    font-weight: bold;
}

.page-resources-ok9-lottery-game-analysis__sub-title {
    font-size: 1.8em;
    color: var(--page-ok9-text-light);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    border-left: 5px solid var(--page-ok9-accent-color);
    padding-left: 15px;
}

.page-resources-ok9-lottery-game-analysis__paragraph {
    font-size: 1.1em;
    color: var(--page-ok9-text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-ok9-lottery-game-analysis__list {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 20px;
    color: var(--page-ok9-text-light);
}

.page-resources-ok9-lottery-game-analysis__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-ok9-lottery-game-analysis__list li::marker {
    color: var(--page-ok9-accent-color);
}

.page-resources-ok9-lottery-game-analysis__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--page-ok9-border-color);
}

/* FAQ Section */
.page-resources-ok9-lottery-game-analysis__faq-item {
    background-color: var(--page-ok9-secondary-bg);
    border: 1px solid var(--page-ok9-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.page-resources-ok9-lottery-game-analysis__faq-item:hover {
    background-color: #2a303a;
}

.page-resources-ok9-lottery-game-analysis__faq-question {
    font-size: 1.25em;
    color: var(--page-ok9-accent-color);
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.page-resources-ok9-lottery-game-analysis__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: var(--page-ok9-accent-color);
    transition: transform 0.3s ease;
}

.page-resources-ok9-lottery-game-analysis__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-ok9-lottery-game-analysis__faq-answer {
    font-size: 1.1em;
    color: var(--page-ok9-text-light);
    margin-top: 0;
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.page-resources-ok9-lottery-game-analysis__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    margin-top: 10px;
}

/* Final CTA */
.page-resources-ok9-lottery-game-analysis__cta-final {
    text-align: center;
    padding: 50px 0;
    background-color: var(--page-ok9-secondary-bg);
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-resources-ok9-lottery-game-analysis__cta-text {
    font-size: 1.8em;
    color: var(--page-ok9-text-light);
    margin-bottom: 30px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-ok9-lottery-game-analysis__main-title {
        font-size: 2.5em;
    }

    .page-resources-ok9-lottery-game-analysis__hero-description {
        font-size: 1.1em;
    }

    .page-resources-ok9-lottery-game-analysis__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-ok9-lottery-game-analysis__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-resources-ok9-lottery-game-analysis__section-title {
        font-size: 2em;
    }

    .page-resources-ok9-lottery-game-analysis__sub-title {
        font-size: 1.5em;
    }

    .page-resources-ok9-lottery-game-analysis__paragraph,
    .page-resources-ok9-lottery-game-analysis__list li,
    .page-resources-ok9-lottery-game-analysis__faq-question,
    .page-resources-ok9-lottery-game-analysis__faq-answer {
        font-size: 1em;
    }

    .page-resources-ok9-lottery-game-analysis__cta-text {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-resources-ok9-lottery-game-analysis__main-title {
        font-size: 2em;
    }

    .page-resources-ok9-lottery-game-analysis__hero-description {
        font-size: 0.95em;
    }

    .page-resources-ok9-lottery-game-analysis__btn {
        width: 90%;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-resources-ok9-lottery-game-analysis__section-title {
        font-size: 1.8em;
    }

    .page-resources-ok9-lottery-game-analysis__sub-title {
        font-size: 1.3em;
    }

    .page-resources-ok9-lottery-game-analysis__list {
        margin-left: 20px;
    }

    .page-resources-ok9-lottery-game-analysis__faq-question {
        font-size: 1.1em;
    }

    .page-resources-ok9-lottery-game-analysis__cta-text {
        font-size: 1.3em;
    }
}