/* style/slot-games-jackpot-tips.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --login-color: #EA7C07;
    --background-light: #FFFFFF;
    --black: #000000;
}

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

.page-slot-games-jackpot-tips__hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    box-sizing: border-box;
}

.page-slot-games-jackpot-tips__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-slot-games-jackpot-tips__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-slot-games-jackpot-tips__hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    max-width: 900px;
    padding: 20px;
}

.page-slot-games-jackpot-tips__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
}

.page-slot-games-jackpot-tips__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-slot-games-jackpot-tips__content-section {
    padding: 60px 0;
}

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

.page-slot-games-jackpot-tips__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

.page-slot-games-jackpot-tips__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-slot-games-jackpot-tips__paragraph {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-slot-games-jackpot-tips__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.page-slot-games-jackpot-tips__image-text-block--reverse {
    flex-direction: row-reverse;
}

.page-slot-games-jackpot-tips__content-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games-jackpot-tips__text-content {
    flex: 2;
}

.page-slot-games-jackpot-tips__list {
    list-style: disc inside;
    margin-bottom: 15px;
    padding-left: 20px;
    color: var(--text-dark);
}

.page-slot-games-jackpot-tips__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-slot-games-jackpot-tips__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-slot-games-jackpot-tips__card {
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

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

.page-slot-games-jackpot-tips__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-slot-games-jackpot-tips__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-slot-games-jackpot-tips__card-text {
    font-size: 1em;
    color: var(--text-dark);
}

.page-slot-games-jackpot-tips__btn-primary,
.page-slot-games-jackpot-tips__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-size: 1.1em;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-slot-games-jackpot-tips__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-slot-games-jackpot-tips__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

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

.page-slot-games-jackpot-tips__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-slot-games-jackpot-tips__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-slot-games-jackpot-tips__faq-container {
    margin-top: 40px;
}

.page-slot-games-jackpot-tips__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-dark);
}

.page-slot-games-jackpot-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #f5f5f5;
    color: var(--primary-color);
    list-style: none; /* For details/summary */
}

.page-slot-games-jackpot-tips__faq-question::-webkit-details-marker {
    display: none;
}

.page-slot-games-jackpot-tips__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
}

.page-slot-games-jackpot-tips__faq-answer {
    padding: 0 20px 20px;
    font-size: 1.05em;
    color: var(--text-dark);
}

.page-slot-games-jackpot-tips__faq-item[open] .page-slot-games-jackpot-tips__faq-question {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-slot-games-jackpot-tips__faq-item[open] .page-slot-games-jackpot-tips__faq-toggle {
    color: var(--text-light);
}

.page-slot-games-jackpot-tips a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-slot-games-jackpot-tips a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-slot-games-jackpot-tips__main-title {
        font-size: 2.8em;
    }
    .page-slot-games-jackpot-tips__hero-description {
        font-size: 1.1em;
    }
    .page-slot-games-jackpot-tips__image-text-block {
        flex-direction: column;
    }
    .page-slot-games-jackpot-tips__image-text-block--reverse {
        flex-direction: column;
    }
    .page-slot-games-jackpot-tips__text-content {
        flex: none;
    }
    .page-slot-games-jackpot-tips__content-image {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .page-slot-games-jackpot-tips {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-slot-games-jackpot-tips__hero-section {
        height: auto;
        min-height: 50vh;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-slot-games-jackpot-tips__main-title {
        font-size: 2em !important;
    }
    .page-slot-games-jackpot-tips__hero-description {
        font-size: 1em !important;
    }
    .page-slot-games-jackpot-tips__section-title {
        font-size: 2em !important;
    }
    .page-slot-games-jackpot-tips__sub-title {
        font-size: 1.5em !important;
    }
    .page-slot-games-jackpot-tips__paragraph,
    .page-slot-games-jackpot-tips__list-item,
    .page-slot-games-jackpot-tips__card-text {
        font-size: 1em !important;
    }
    .page-slot-games-jackpot-tips__card-grid {
        grid-template-columns: 1fr;
    }
    .page-slot-games-jackpot-tips__card {
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .page-slot-games-jackpot-tips__cta-buttons {
        flex-direction: column;
        align-items: center;
        padding-left: 15px;
        padding-right: 15px;
        gap: 15px;
    }
    .page-slot-games-jackpot-tips__btn-primary,
    .page-slot-games-jackpot-tips__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
    }
    .page-slot-games-jackpot-tips__content-section,
    .page-slot-games-jackpot-tips__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-slot-games-jackpot-tips img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-slot-games-jackpot-tips__video-section,
    .page-slot-games-jackpot-tips__video-container,
    .page-slot-games-jackpot-tips__video-wrapper,
    .page-slot-games-jackpot-tips__content-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-slot-games-jackpot-tips__faq-question {
        font-size: 1.1em !important;
        padding: 15px;
    }
    .page-slot-games-jackpot-tips__faq-answer {
        padding: 0 15px 15px;
    }
}