/* style/game-guides-slot-machine-jackpot-tips.css */

/* Biến CSS */
:root {
    --page-primary-color: #0A1931;
    --page-secondary-color: #FFD700;
    --page-text-light: #F8F8F8; /* Sáng hơn để tương phản với nền tối */
    --page-text-dark: #333333; /* Tối hơn để tương phản với nền sáng */
    --page-accent-color: #0028ff; /* Màu tương phản cho điểm nhấn */
    --page-bg-light: #FFFFFF;
    --page-bg-dark: #1A2A47; /* Một màu nền tối hơn một chút so với primary để tạo lớp */
}

.page-game-guides-slot-machine-jackpot-tips {
    font-family: 'Arial', sans-serif;
    color: var(--page-text-light); /* Mặc định chữ sáng trên nền tối */
    background-color: var(--page-primary-color);
    line-height: 1.6;
}

.page-game-guides-slot-machine-jackpot-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-guides-slot-machine-jackpot-tips__hero {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #1A2A47 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--page-secondary-color);
}

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

.page-game-guides-slot-machine-jackpot-tips__hero-subtitle {
    font-size: 1.4em;
    color: var(--page-text-light);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-game-guides-slot-machine-jackpot-tips__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-game-guides-slot-machine-jackpot-tips__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-guides-slot-machine-jackpot-tips__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-guides-slot-machine-jackpot-tips__btn--secondary {
    background-color: var(--page-bg-dark);
    color: var(--page-secondary-color);
    border: 2px solid var(--page-secondary-color);
    margin-top: 20px;
}

.page-game-guides-slot-machine-jackpot-tips__btn--secondary:hover {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    transform: translateY(-3px);
}

.page-game-guides-slot-machine-jackpot-tips__btn--ghost {
    background: transparent;
    color: var(--page-secondary-color);
    border: 2px solid var(--page-secondary-color);
    margin-left: 20px;
}

.page-game-guides-slot-machine-jackpot-tips__btn--ghost:hover {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    transform: translateY(-3px);
}

.page-game-guides-slot-machine-jackpot-tips__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-game-guides-slot-machine-jackpot-tips__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-guides-slot-machine-jackpot-tips__section:last-of-type {
    border-bottom: none;
}

.page-game-guides-slot-machine-jackpot-tips__section-title {
    font-size: 2.5em;
    color: var(--page-secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-game-guides-slot-machine-jackpot-tips__sub-title {
    font-size: 1.8em;
    color: var(--page-secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--page-secondary-color);
    padding-left: 15px;
}

.page-game-guides-slot-machine-jackpot-tips__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-text-light);
}

.page-game-guides-slot-machine-jackpot-tips__section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-game-guides-slot-machine-jackpot-tips__section ul li {
    background-color: var(--page-bg-dark);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    position: relative;
    padding-left: 40px;
    color: var(--page-text-light);
}

.page-game-guides-slot-machine-jackpot-tips__section ul li::before {
    content: '✓';
    color: var(--page-secondary-color);
    font-weight: bold;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.page-game-guides-slot-machine-jackpot-tips__highlight {
    color: var(--page-secondary-color);
    font-weight: bold;
}

.page-game-guides-slot-machine-jackpot-tips__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--page-secondary-color);
}

/* Accordion for FAQ */
.page-game-guides-slot-machine-jackpot-tips__accordion {
    margin-top: 30px;
}

.page-game-guides-slot-machine-jackpot-tips__accordion-item {
    background-color: var(--page-bg-dark);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-game-guides-slot-machine-jackpot-tips__accordion-header {
    width: 100%;
    background-color: var(--page-primary-color);
    color: var(--page-secondary-color);
    padding: 18px 25px;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-guides-slot-machine-jackpot-tips__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-game-guides-slot-machine-jackpot-tips__accordion-header.active {
    background-color: #1A2A47;
}

.page-game-guides-slot-machine-jackpot-tips__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-guides-slot-machine-jackpot-tips__accordion-content {
    padding: 0 25px;
    background-color: var(--page-bg-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: var(--page-text-light);
}

.page-game-guides-slot-machine-jackpot-tips__accordion-content p {
    padding: 15px 0;
    margin: 0;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-guides-slot-machine-jackpot-tips__hero-title {
        font-size: 2.5em;
    }

    .page-game-guides-slot-machine-jackpot-tips__hero-subtitle {
        font-size: 1.1em;
    }

    .page-game-guides-slot-machine-jackpot-tips__section-title {
        font-size: 2em;
    }

    .page-game-guides-slot-machine-jackpot-tips__sub-title {
        font-size: 1.5em;
    }

    .page-game-guides-slot-machine-jackpot-tips__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-guides-slot-machine-jackpot-tips__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-game-guides-slot-machine-jackpot-tips__btn--ghost {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-game-guides-slot-machine-jackpot-tips__cta .page-game-guides-slot-machine-jackpot-tips__btn {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .page-game-guides-slot-machine-jackpot-tips__cta .page-game-guides-slot-machine-jackpot-tips__btn:not(:last-child) {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-guides-slot-machine-jackpot-tips__hero-title {
        font-size: 2em;
    }

    .page-game-guides-slot-machine-jackpot-tips__hero-subtitle {
        font-size: 1em;
    }

    .page-game-guides-slot-machine-jackpot-tips__section-title {
        font-size: 1.8em;
    }

    .page-game-guides-slot-machine-jackpot-tips__sub-title {
        font-size: 1.3em;
    }

    .page-game-guides-slot-machine-jackpot-tips__btn {
        width: 100%;
        box-sizing: border-box;
    }

    .page-game-guides-slot-machine-jackpot-tips__btn--ghost {
        margin-left: 0;
        margin-top: 15px;
    }
}