/* style/e-games-jackpot-intro.css */

:root {
    --page-e-games-jackpot-intro-primary-color: #0A192F;
    --page-e-games-jackpot-intro-secondary-color: #E0B400;
    --page-e-games-jackpot-intro-text-light: #F5F5F5;
    --page-e-games-jackpot-intro-text-dark: #0A192F;
    --page-e-games-jackpot-intro-background-dark: #0A192F;
    --page-e-games-jackpot-intro-background-light: #FFFFFF;
    --page-e-games-jackpot-intro-accent-color: #E0B400;
}

.page-e-games-jackpot-intro {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-e-games-jackpot-intro-text-dark); /* Default text color for light sections */
    background-color: var(--page-e-games-jackpot-intro-background-light);
}

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

.page-e-games-jackpot-intro__container--center {
    text-align: center;
}

/* Hero Section */
.page-e-games-jackpot-intro__hero {
    background: linear-gradient(135deg, var(--page-e-games-jackpot-intro-background-dark) 0%, #1a3a66 50%, var(--page-e-games-jackpot-intro-secondary-color) 100%);
    color: var(--page-e-games-jackpot-intro-text-light);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-e-games-jackpot-intro__hero-content {
    max-width: 900px;
    z-index: 1;
    padding: 20px;
}

.page-e-games-jackpot-intro__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--page-e-games-jackpot-intro-text-light); /* Light text on dark background */
}

.page-e-games-jackpot-intro__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--page-e-games-jackpot-intro-text-light); /* Light text on dark background */
}

.page-e-games-jackpot-intro__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.15;
    z-index: 0;
}

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

/* General Section Styling */
.page-e-games-jackpot-intro__section {
    padding: 60px 0;
}

.page-e-games-jackpot-intro__section--dark {
    background-color: var(--page-e-games-jackpot-intro-background-dark);
    color: var(--page-e-games-jackpot-intro-text-light);
}

.page-e-games-jackpot-intro__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: inherit; /* Inherits from section, ensuring contrast */
    font-weight: bold;
}

.page-e-games-jackpot-intro__content-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.page-e-games-jackpot-intro__content-block--image-right {
    flex-direction: column;
}

.page-e-games-jackpot-intro__content-block--image-left {
    flex-direction: column-reverse;
}

.page-e-games-jackpot-intro__text-content {
    flex: 1;
    max-width: 700px;
}

.page-e-games-jackpot-intro__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: inherit;
}

.page-e-games-jackpot-intro__text-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: inherit;
}

.page-e-games-jackpot-intro__text-content li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-e-games-jackpot-intro__image-wrapper {
    flex: 1;
    max-width: 500px;
}

.page-e-games-jackpot-intro__image-wrapper--center {
    margin: 30px auto;
}

.page-e-games-jackpot-intro__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-e-games-jackpot-intro__image--small {
    max-width: 300px;
    margin-top: 20px;
}

/* Highlight Text */
.page-e-games-jackpot-intro .highlight {
    color: var(--page-e-games-jackpot-intro-accent-color);
}

/* Buttons */
.page-e-games-jackpot-intro__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-e-games-jackpot-intro__button--primary {
    background-color: var(--page-e-games-jackpot-intro-accent-color);
    color: var(--page-e-games-jackpot-intro-text-dark); /* Dark text on golden background */
}

.page-e-games-jackpot-intro__button--primary:hover {
    background-color: #f0c500; /* Slightly lighter gold */
    transform: translateY(-3px);
}

.page-e-games-jackpot-intro__button--secondary {
    background-color: var(--page-e-games-jackpot-intro-background-dark);
    color: var(--page-e-games-jackpot-intro-accent-color); /* Golden text on dark background */
    border: 2px solid var(--page-e-games-jackpot-intro-accent-color);
}

.page-e-games-jackpot-intro__button--secondary:hover {
    background-color: var(--page-e-games-jackpot-intro-accent-color);
    color: var(--page-e-games-jackpot-intro-background-dark); /* Dark text on golden background */
    transform: translateY(-3px);
}

/* Card Grid */
.page-e-games-jackpot-intro__grid-3-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.page-e-games-jackpot-intro__card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: var(--page-e-games-jackpot-intro-text-light); /* Light text on dark background */
}

.page-e-games-jackpot-intro__card:hover {
    transform: translateY(-5px);
}

.page-e-games-jackpot-intro__card-title {
    font-size: 1.8em;
    color: var(--page-e-games-jackpot-intro-accent-color); /* Golden title */
    margin-bottom: 15px;
}

.page-e-games-jackpot-intro__card p {
    font-size: 1.05em;
    color: var(--page-e-games-jackpot-intro-text-light);
}

/* CTA Section */
.page-e-games-jackpot-intro__section--cta {
    background: var(--page-e-games-jackpot-intro-background-dark);
    color: var(--page-e-games-jackpot-intro-text-light);
    text-align: center;
}

.page-e-games-jackpot-intro__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-e-games-jackpot-intro-text-light);
}

/* FAQ Section */
.page-e-games-jackpot-intro__faq-item {
    background-color: var(--page-e-games-jackpot-intro-background-light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: var(--page-e-games-jackpot-intro-text-dark);
}

.page-e-games-jackpot-intro__faq-question {
    font-size: 1.4em;
    color: var(--page-e-games-jackpot-intro-primary-color); /* Dark blue question */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-e-games-jackpot-intro__faq-answer {
    font-size: 1.1em;
    color: var(--page-e-games-jackpot-intro-text-dark);
}

/* Inline links */
.page-e-games-jackpot-intro__inline-link {
    color: var(--page-e-games-jackpot-intro-accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-e-games-jackpot-intro__inline-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-e-games-jackpot-intro__hero {
        padding: 120px 0;
    }

    .page-e-games-jackpot-intro__hero-title {
        font-size: 4.5em;
    }

    .page-e-games-jackpot-intro__hero-description {
        font-size: 1.3em;
    }

    .page-e-games-jackpot-intro__section-title {
        font-size: 3em;
    }

    .page-e-games-jackpot-intro__content-block--image-right {
        flex-direction: row;
    }

    .page-e-games-jackpot-intro__content-block--image-left {
        flex-direction: row;
    }

    .page-e-games-jackpot-intro__grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .page-e-games-jackpot-intro__hero {
        padding: 150px 0;
    }

    .page-e-games-jackpot-intro__hero-title {
        font-size: 5.5em;
    }

    .page-e-games-jackpot-intro__grid-3-col {
        grid-template-columns: repeat(3, 1fr);
    }
}