/* style/lottery-games-klc-intro.css */

.page-lottery-games-klc-intro {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5; /* Light text on dark background */
    background-color: #0A0A0A;
    line-height: 1.6;
}

.page-lottery-games-klc-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-lottery-games-klc-intro__hero-section {
    background: linear-gradient(135deg, #0A0A0A 0%, #333333 70%, #FFD700 100%);
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-lottery-games-klc-intro__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-lottery-games-klc-intro__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-lottery-games-klc-intro__hero-description {
    font-size: 1.3em;
    color: #f5f5f5;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-lottery-games-klc-intro__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
}

.page-lottery-games-klc-intro__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-lottery-games-klc-intro__btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page-lottery-games-klc-intro__btn--primary {
    background-color: #FFD700;
    color: #0A0A0A;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-lottery-games-klc-intro__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-lottery-games-klc-intro__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-lottery-games-klc-intro__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A0A0A;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-lottery-games-klc-intro__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-lottery-games-klc-intro__section:last-of-type {
    border-bottom: none;
}

.page-lottery-games-klc-intro__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-lottery-games-klc-intro__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-lottery-games-klc-intro__subsection-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-lottery-games-klc-intro__content-wrapper p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #cccccc;
}

.page-lottery-games-klc-intro__list {
    list-style: none;
    padding: 0;
    margin-left: 20px;
}

.page-lottery-games-klc-intro__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #cccccc;
}

.page-lottery-games-klc-intro__list li::before {
    content: '▶'; /* Unicode right-pointing triangle */
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1.6;
}

.page-lottery-games-klc-intro__list--tips li::before {
    content: '💡'; /* Lightbulb emoji */
    left: -5px;
}

.page-lottery-games-klc-intro__image-inline {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-klc-intro__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-klc-intro__advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery-games-klc-intro__advantage-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games-klc-intro__advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-klc-intro__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-lottery-games-klc-intro__item-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-lottery-games-klc-intro__item-title + p {
    color: #bbbbbb;
}

.page-lottery-games-klc-intro__faq-item {
    background-color: #1a1a1a;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-klc-intro__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-lottery-games-klc-intro__faq-answer {
    font-size: 1.1em;
    color: #cccccc;
    display: block; /* Ensure it's visible by default for static content */
}

.page-lottery-games-klc-intro__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}

.page-lottery-games-klc-intro__call-to-action {
    background: #1a1a1a;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-lottery-games-klc-intro__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-lottery-games-klc-intro__cta-description {
    font-size: 1.4em;
    color: #f5f5f5;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-lottery-games-klc-intro__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-lottery-games-klc-intro__cta-small-text {
    margin-top: 20px;
    font-size: 1em;
    color: #aaaaaa;
}

.page-lottery-games-klc-intro__cta-small-text a {
    color: #FFD700;
    text-decoration: underline;
}

.page-lottery-games-klc-intro__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 215, 0, 0.95);
    color: #0A0A0A;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    animation: page-lottery-games-klc-intro__pulse 2s infinite;
}

.page-lottery-games-klc-intro__floating-promo-text {
    margin: 0;
    font-weight: bold;
    font-size: 1.1em;
}

.page-lottery-games-klc-intro__floating-promo-btn {
    background-color: #0A0A0A;
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-lottery-games-klc-intro__floating-promo-btn:hover {
    background-color: #333333;
    color: #FFD700;
}

.page-lottery-games-klc-intro .highlight-text {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery-games-klc-intro__hero-title {
        font-size: 2.8em;
    }
    .page-lottery-games-klc-intro__hero-description {
        font-size: 1.1em;
    }
    .page-lottery-games-klc-intro__section-title {
        font-size: 2em;
    }
    .page-lottery-games-klc-intro__subsection-title {
        font-size: 1.6em;
    }
    .page-lottery-games-klc-intro__cta-title {
        font-size: 2.5em;
    }
    .page-lottery-games-klc-intro__cta-description {
        font-size: 1.2em;
    }
    .page-lottery-games-klc-intro__advantage-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-lottery-games-klc-intro__hero-section {
        padding: 80px 20px;
    }
    .page-lottery-games-klc-intro__hero-title {
        font-size: 2.2em;
    }
    .page-lottery-games-klc-intro__hero-description {
        font-size: 1em;
    }
    .page-lottery-games-klc-intro__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
    }
    .page-lottery-games-klc-intro__section {
        padding: 40px 0;
    }
    .page-lottery-games-klc-intro__section-title {
        font-size: 1.8em;
    }
    .page-lottery-games-klc-intro__subsection-title {
        font-size: 1.4em;
    }
    .page-lottery-games-klc-intro__list li, .page-lottery-games-klc-intro__content-wrapper p, .page-lottery-games-klc-intro__faq-answer {
        font-size: 0.95em;
    }
    .page-lottery-games-klc-intro__advantage-item {
        padding: 20px;
    }
    .page-lottery-games-klc-intro__item-title {
        font-size: 1.3em;
    }
    .page-lottery-games-klc-intro__faq-question {
        font-size: 1.1em;
    }
    .page-lottery-games-klc-intro__cta-title {
        font-size: 2em;
    }
    .page-lottery-games-klc-intro__cta-description {
        font-size: 1em;
    }
    .page-lottery-games-klc-intro__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-lottery-games-klc-intro__floating-promo {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }
    .page-lottery-games-klc-intro__floating-promo-text {
        font-size: 0.9em;
        margin-bottom: 5px;
    }
    .page-lottery-games-klc-intro__floating-promo-btn {
        width: 100%;
        text-align: center;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .page-lottery-games-klc-intro__hero-title {
        font-size: 1.8em;
    }
    .page-lottery-games-klc-intro__hero-description {
        font-size: 0.9em;
    }
    .page-lottery-games-klc-intro__btn {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .page-lottery-games-klc-intro__section-title {
        font-size: 1.6em;
    }
    .page-lottery-games-klc-intro__subsection-title {
        font-size: 1.2em;
    }
    .page-lottery-games-klc-intro__cta-title {
        font-size: 1.8em;
    }
    .page-lottery-games-klc-intro__cta-description {
        font-size: 0.9em;
    }
    .page-lottery-games-klc-intro__btn--large {
        font-size: 1em;
    }
}

/* Keyframe for floating promo pulse effect */
@keyframes page-lottery-games-klc-intro__pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}