/* style/slots-games-jackpot.css */

/* Biến CSS */
:root {
    --page-slots-games-jackpot-primary-color: #1A2B47;
    --page-slots-games-jackpot-secondary-color: #FFD700;
    --page-slots-games-jackpot-text-light: #F8F8F8;
    --page-slots-games-jackpot-text-dark: #1A2B47;
    --page-slots-games-jackpot-bg-dark: #1A2B47;
    --page-slots-games-jackpot-bg-light: #F0F2F5;
    --page-slots-games-jackpot-accent-dark: #998100; /* Darker shade of secondary for text on light secondary bg */
    --page-slots-games-jackpot-accent-light: #e5d4b8; /* Complementary for emphasis */
    --page-slots-games-jackpot-border-color: #3A4E6C;
    --page-slots-games-jackpot-card-bg: #2B3D5B;
}

.page-slots-games-jackpot {
    font-family: 'Arial', sans-serif;
    color: var(--page-slots-games-jackpot-text-light);
    background-color: var(--page-slots-games-jackpot-bg-dark);
    line-height: 1.6;
}

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

.page-slots-games-jackpot__hero-section {
    background: linear-gradient(135deg, var(--page-slots-games-jackpot-bg-dark) 0%, #0D1A2E 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--page-slots-games-jackpot-secondary-color);
}

.page-slots-games-jackpot__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,patterns,dark_blue,gold]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-slots-games-jackpot__hero-section .page-slots-games-jackpot__container {
    position: relative;
    z-index: 1;
}

.page-slots-games-jackpot__main-title {
    font-size: 3.5em;
    color: var(--page-slots-games-jackpot-secondary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

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

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

.page-slots-games-jackpot__btn--primary {
    background-color: var(--page-slots-games-jackpot-secondary-color);
    color: var(--page-slots-games-jackpot-text-dark);
    border: 2px solid var(--page-slots-games-jackpot-secondary-color);
}

.page-slots-games-jackpot__btn--primary:hover {
    background-color: transparent;
    color: var(--page-slots-games-jackpot-secondary-color);
    border-color: var(--page-slots-games-jackpot-secondary-color);
    transform: translateY(-3px);
}

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

.page-slots-games-jackpot__btn--secondary:hover {
    background-color: var(--page-slots-games-jackpot-secondary-color);
    color: var(--page-slots-games-jackpot-text-dark);
    transform: translateY(-3px);
}

.page-slots-games-jackpot__btn--learn-more {
    background-color: transparent;
    color: var(--page-slots-games-jackpot-secondary-color);
    border: 1px solid var(--page-slots-games-jackpot-secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    margin-top: 20px;
}

.page-slots-games-jackpot__btn--learn-more:hover {
    background-color: var(--page-slots-games-jackpot-secondary-color);
    color: var(--page-slots-games-jackpot-text-dark);
}

.page-slots-games-jackpot__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
    margin: 5px;
    background-color: var(--page-slots-games-jackpot-secondary-color);
    color: var(--page-slots-games-jackpot-text-dark);
    border: 1px solid var(--page-slots-games-jackpot-secondary-color);
}

.page-slots-games-jackpot__btn--small:hover {
    background-color: transparent;
    color: var(--page-slots-games-jackpot-secondary-color);
}

.page-slots-games-jackpot__btn--large {
    min-width: 300px;
    font-size: 1.3em;
}

.page-slots-games-jackpot__section {
    padding: 80px 0;
}

.page-slots-games-jackpot__section:nth-of-type(even) {
    background-color: #0D1A2E;
}

.page-slots-games-jackpot__section-title {
    font-size: 2.5em;
    color: var(--page-slots-games-jackpot-secondary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-slots-games-jackpot__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-slots-games-jackpot-secondary-color);
    border-radius: 2px;
}

.page-slots-games-jackpot__description {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 60px auto;
    color: var(--page-slots-games-jackpot-text-light);
}

.page-slots-games-jackpot__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-slots-games-jackpot__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-slots-games-jackpot__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: var(--page-slots-games-jackpot-text-light);
}

.page-slots-games-jackpot__text-content strong {
    color: var(--page-slots-games-jackpot-secondary-color);
}

.page-slots-games-jackpot__image-wrapper {
    text-align: center;
}

.page-slots-games-jackpot__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-slots-games-jackpot__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-slots-games-jackpot__feature-card {
    background-color: var(--page-slots-games-jackpot-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-jackpot__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.page-slots-games-jackpot__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--page-slots-games-jackpot-secondary-color));
}

.page-slots-games-jackpot__feature-title {
    font-size: 1.6em;
    color: var(--page-slots-games-jackpot-secondary-color);
    margin-bottom: 15px;
}

.page-slots-games-jackpot__feature-card p {
    color: var(--page-slots-games-jackpot-text-light);
    font-size: 1em;
}

.page-slots-games-jackpot__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-slots-games-jackpot__list li {
    background-color: var(--page-slots-games-jackpot-card-bg);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-slots-games-jackpot__list-icon {
    color: var(--page-slots-games-jackpot-secondary-color);
    font-size: 1.5em;
    margin-right: 15px;
    font-weight: bold;
}

.page-slots-games-jackpot__list li strong {
    color: var(--page-slots-games-jackpot-secondary-color);
}

.page-slots-games-jackpot__cta-row {
    text-align: center;
    margin-top: 40px;
}

.page-slots-games-jackpot__ordered-list {
    list-style-type: decimal;
    padding-left: 25px;
    color: var(--page-slots-games-jackpot-text-light);
}

.page-slots-games-jackpot__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-slots-games-jackpot__ordered-list li strong {
    color: var(--page-slots-games-jackpot-secondary-color);
}

.page-slots-games-jackpot__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-slots-games-jackpot__step-card {
    background-color: var(--page-slots-games-jackpot-card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-slots-games-jackpot__step-number {
    font-size: 3em;
    font-weight: bold;
    color: rgba(255, 215, 0, 0.2); /* Semi-transparent gold */
    position: absolute;
    top: 10px;
    left: 15px;
    line-height: 1;
    z-index: 0;
}

.page-slots-games-jackpot__step-card h3,
.page-slots-games-jackpot__step-card p {
    position: relative;
    z-index: 1;
}

.page-slots-games-jackpot__step-title {
    font-size: 1.8em;
    color: var(--page-slots-games-jackpot-secondary-color);
    margin-bottom: 15px;
    margin-top: 20px;
}

.page-slots-games-jackpot__step-card p {
    color: var(--page-slots-games-jackpot-text-light);
}

.page-slots-games-jackpot__step-card a {
    color: var(--page-slots-games-jackpot-secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-slots-games-jackpot__step-card a:hover {
    text-decoration: underline;
}

.page-slots-games-jackpot__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-slots-games-jackpot__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-slots-games-jackpot__promo-card {
    background-color: var(--page-slots-games-jackpot-card-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-slots-games-jackpot__promo-card:hover {
    transform: translateY(-5px);
}

.page-slots-games-jackpot__promo-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: brightness(0.8) contrast(1.2);
}

.page-slots-games-jackpot__promo-title {
    font-size: 1.5em;
    color: var(--page-slots-games-jackpot-secondary-color);
    margin-bottom: 10px;
}

.page-slots-games-jackpot__promo-card p {
    color: var(--page-slots-games-jackpot-text-light);
    margin-bottom: 20px;
}

.page-slots-games-jackpot__faq-item {
    background-color: var(--page-slots-games-jackpot-card-bg);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-slots-games-jackpot__faq-question {
    font-size: 1.4em;
    color: var(--page-slots-games-jackpot-secondary-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-slots-games-jackpot__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-slots-games-jackpot__faq-answer {
    color: var(--page-slots-games-jackpot-text-light);
    font-size: 1.05em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
}

.page-slots-games-jackpot__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-slots-games-jackpot__section--final-cta {
    text-align: center;
    padding-bottom: 100px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-games-jackpot__main-title {
        font-size: 2.8em;
    }

    .page-slots-games-jackpot__subtitle {
        font-size: 1.3em;
    }

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

    .page-slots-games-jackpot__content-grid {
        grid-template-columns: 1fr;
    }

    .page-slots-games-jackpot__content-grid--reverse {
        grid-template-columns: 1fr;
    }

    .page-slots-games-jackpot__content-grid--reverse .page-slots-games-jackpot__image-wrapper {
        order: -1;
    }

    .page-slots-games-jackpot__features-grid,
    .page-slots-games-jackpot__steps-grid,
    .page-slots-games-jackpot__promo-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-slots-games-jackpot__hero-section {
        padding: 80px 0;
    }

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

    .page-slots-games-jackpot__subtitle {
        font-size: 1.1em;
    }

    .page-slots-games-jackpot__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

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

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

    .page-slots-games-jackpot__description {
        font-size: 1em;
    }

    .page-slots-games-jackpot__step-number {
        font-size: 2.5em;
    }

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

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

@media (max-width: 480px) {
    .page-slots-games-jackpot__hero-section {
        padding: 60px 0;
    }

    .page-slots-games-jackpot__main-title {
        font-size: 1.8em;
    }

    .page-slots-games-jackpot__subtitle {
        font-size: 0.95em;
    }

    .page-slots-games-jackpot__btn {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }

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

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

    .page-slots-games-jackpot__list li {
        flex-direction: column;
        text-align: center;
    }

    .page-slots-games-jackpot__list-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .page-slots-games-jackpot__btn--large {
        min-width: unset;
        width: calc(100% - 40px);
    }
}