/* style/slots-jackpot.css */
.page-slots-jackpot {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey text for readability on dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

.page-slots-jackpot__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-slots-jackpot__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #8B0000, #FFD700); /* Red to Gold gradient */
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.page-slots-jackpot__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-slots-jackpot__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-slots-jackpot__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #eee;
}

.page-slots-jackpot__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-slots-jackpot__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
    overflow: hidden;
}

.page-slots-jackpot__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.1);
}

.page-slots-jackpot__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin: 60px 0 40px;
    font-weight: bold;
    position: relative;
}

.page-slots-jackpot__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #8B0000; /* Deep Red */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-slots-jackpot__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
    text-align: justify;
}

.page-slots-jackpot__text-block a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-slots-jackpot__text-block a:hover {
    text-decoration: underline;
}

.page-slots-jackpot__image-full-width {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-slots-jackpot__feature-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-slots-jackpot__feature-item:hover {
    transform: translateY(-10px);
    background-color: #3a3a3a;
}

.page-slots-jackpot__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-slots-jackpot__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-slots-jackpot__feature-description {
    font-size: 1em;
    color: #ccc;
}

.page-slots-jackpot__game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slots-jackpot__game-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-slots-jackpot__game-card:hover {
    transform: translateY(-10px);
}

.page-slots-jackpot__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #8B0000;
}

.page-slots-jackpot__game-title {
    font-size: 1.5em;
    color: #FFD700;
    margin: 20px 15px 10px;
}

.page-slots-jackpot__game-description {
    font-size: 0.95em;
    color: #ccc;
    padding: 0 15px 20px;
}

.page-slots-jackpot__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
    margin: 10px 5px;
}

.page-slots-jackpot__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1a1a1a;
    border: 2px solid #FFD700;
}

.page-slots-jackpot__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-slots-jackpot__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-slots-jackpot__btn--secondary:hover {
    background-color: #FFD700;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.page-slots-jackpot__btn--tertiary {
    background-color: #8B0000; /* Deep Red */
    color: #fff;
    border: 2px solid #8B0000;
}

.page-slots-jackpot__btn--tertiary:hover {
    background-color: #6a0000;
    transform: translateY(-3px);
}

.page-slots-jackpot__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.page-slots-jackpot__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

.page-slots-jackpot__btn--center {
    display: block;
    width: fit-content;
    margin: 40px auto;
}

.page-slots-jackpot__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-slots-jackpot__step-list li {
    background-color: #2a2a2a;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    padding-left: 70px;
}

.page-slots-jackpot__step-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: #FFD700;
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-slots-jackpot__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-slots-jackpot__cta {
    background: linear-gradient(90deg, #8B0000, #FFD700);
    padding: 70px 20px;
    text-align: center;
    margin: 80px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-slots-jackpot__cta .page-slots-jackpot__section-title {
    color: #fff;
}

.page-slots-jackpot__cta .page-slots-jackpot__section-title::after {
    background-color: #FFD700;
}

.page-slots-jackpot__cta .page-slots-jackpot__text-block {
    color: #fff;
    max-width: 800px;
    margin: 20px auto 40px;
}

.page-slots-jackpot__responsible-gaming {
    padding: 60px 0;
    background-color: #222;
    margin-top: 80px;
    border-top: 1px solid #333;
}

.page-slots-jackpot__responsible-gaming .page-slots-jackpot__section-title {
    color: #FFD700;
}

.page-slots-jackpot__responsible-gaming .page-slots-jackpot__section-title::after {
    background-color: #8B0000;
}

.page-slots-jackpot__faq {
    padding: 60px 0;
}

.page-slots-jackpot__faq-item {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-slots-jackpot__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-slots-jackpot__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-slots-jackpot__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-slots-jackpot__faq-answer {
    font-size: 1em;
    color: #ccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.page-slots-jackpot__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    margin-top: 10px;
}

.page-slots-jackpot__separator {
    height: 1px;
    background: linear-gradient(to right, transparent, #8B0000, transparent);
    margin: 80px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slots-jackpot__hero-title {
        font-size: 3em;
    }

    .page-slots-jackpot__hero-subtitle {
        font-size: 1.3em;
    }

    .page-slots-jackpot__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-slots-jackpot__hero {
        padding: 60px 15px;
    }

    .page-slots-jackpot__hero-title {
        font-size: 2.5em;
    }

    .page-slots-jackpot__hero-subtitle {
        font-size: 1.1em;
    }

    .page-slots-jackpot__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-slots-jackpot__btn--large {
        width: 100%;
    }

    .page-slots-jackpot__section-title {
        font-size: 1.8em;
        margin: 40px 0 30px;
    }

    .page-slots-jackpot__text-block {
        font-size: 1em;
    }

    .page-slots-jackpot__features-grid,
    .page-slots-jackpot__game-cards-grid {
        grid-template-columns: 1fr;
    }

    .page-slots-jackpot__feature-item,
    .page-slots-jackpot__game-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .page-slots-jackpot__step-list li {
        padding-left: 55px;
    }

    .page-slots-jackpot__step-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        left: 15px;
        top: 15px;
    }

    .page-slots-jackpot__step-title {
        font-size: 1.4em;
    }

    .page-slots-jackpot__cta {
        padding: 50px 15px;
        margin: 60px 0;
    }

    .page-slots-jackpot__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-slots-jackpot__hero-title {
        font-size: 2em;
    }

    .page-slots-jackpot__hero-subtitle {
        font-size: 1em;
    }

    .page-slots-jackpot__section-title {
        font-size: 1.6em;
    }

    .page-slots-jackpot__btn {
        font-size: 1em;
        padding: 10px 20px;
    }

    .page-slots-jackpot__step-title {
        font-size: 1.2em;
    }
}