:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F; /* Main body background */
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

.page-slot-games-jackpot-tips-revealed {
    font-family: 'Arial', sans-serif;
    color: var(--color-text-main); /* Light text on dark background */
    background-color: var(--color-background);
    line-height: 1.6;
}

.page-slot-games-jackpot-tips-revealed__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-slot-games-jackpot-tips-revealed__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding-bottom: 60px; /* Space below content */
    padding-top: 10px; /* Small top padding for visual spacing, body handles header offset */
    background-color: var(--color-background);
    overflow: hidden;
}

.page-slot-games-jackpot-tips-revealed__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-slot-games-jackpot-tips-revealed__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-slot-games-jackpot-tips-revealed__hero-content {
    text-align: center;
    padding: 40px 20px 0; /* Add top padding to separate from image, no overlap */
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.page-slot-games-jackpot-tips-revealed__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-slot-games-jackpot-tips-revealed__description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games-jackpot-tips-revealed__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.page-slot-games-jackpot-tips-revealed__btn-primary,
.page-slot-games-jackpot-tips-revealed__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-slot-games-jackpot-tips-revealed__btn-primary {
    background: var(--color-button-gradient-start); /* Fallback */
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-main);
    border: 2px solid var(--color-button-gradient-start);
}

.page-slot-games-jackpot-tips-revealed__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, var(--color-button-gradient-end) 0%, var(--color-button-gradient-start) 100%);
}

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

.page-slot-games-jackpot-tips-revealed__btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: rgba(87, 227, 141, 0.1);
}

.page-slot-games-jackpot-tips-revealed__section {
    padding: 60px 0;
}

.page-slot-games-jackpot-tips-revealed__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-gold);
    line-height: 1.3;
}

.page-slot-games-jackpot-tips-revealed__sub-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--color-text-main);
    line-height: 1.4;
}

.page-slot-games-jackpot-tips-revealed__text-block {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-text-main);
}

.page-slot-games-jackpot-tips-revealed__text-main {
    color: var(--color-text-main);
}

.page-slot-games-jackpot-tips-revealed__text-secondary {
    color: var(--color-text-secondary);
}

.page-slot-games-jackpot-tips-revealed__light-bg {
    background-color: #f0f0f0; /* Use a light background for contrast */
    color: #333333; /* Dark text on light background */
}

.page-slot-games-jackpot-tips-revealed__light-bg .page-slot-games-jackpot-tips-revealed__section-title,
.page-slot-games-jackpot-tips-revealed__light-bg .page-slot-games-jackpot-tips-revealed__sub-title {
    color: var(--color-deep-green); /* Darker title on light background */
}

.page-slot-games-jackpot-tips-revealed__light-bg .page-slot-games-jackpot-tips-revealed__text-block,
.page-slot-games-jackpot-tips-revealed__light-bg .page-slot-games-jackpot-tips-revealed__list-item {
    color: #333333;
}

.page-slot-games-jackpot-tips-revealed__light-bg a {
    color: var(--color-primary); /* Links in light section */
}
.page-slot-games-jackpot-tips-revealed__light-bg a:hover {
    text-decoration: underline;
}

.page-slot-games-jackpot-tips-revealed__dark-bg {
    background-color: var(--color-background); /* Dark background */
    color: var(--color-text-main); /* Light text on dark background */
}

.page-slot-games-jackpot-tips-revealed__dark-bg a {
    color: var(--color-glow); /* Links in dark section */
}
.page-slot-games-jackpot-tips-revealed__dark-bg a:hover {
    text-decoration: underline;
}

.page-slot-games-jackpot-tips-revealed__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--color-text-main);
}

.page-slot-games-jackpot-tips-revealed__list-item {
    margin-bottom: 10px;
}

.page-slot-games-jackpot-tips-revealed__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-slot-games-jackpot-tips-revealed__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: block; /* Ensure it behaves as a block element */
    margin: 0 auto; /* Center image */
}

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

.page-slot-games-jackpot-tips-revealed__card {
    background-color: var(--color-card-bg); /* Card BG from custom palette */
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--color-text-main);
    display: flex;
    flex-direction: column;
}

.page-slot-games-jackpot-tips-revealed__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-slot-games-jackpot-tips-revealed__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-slot-games-jackpot-tips-revealed__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.page-slot-games-jackpot-tips-revealed__card .page-slot-games-jackpot-tips-revealed__list {
    list-style: none; /* Remove default list style for cards */
    margin-left: 0;
    padding-left: 0;
}

.page-slot-games-jackpot-tips-revealed__card .page-slot-games-jackpot-tips-revealed__list-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--color-text-secondary);
}

.page-slot-games-jackpot-tips-revealed__card .page-slot-games-jackpot-tips-revealed__list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-glow);
    font-weight: bold;
}

.page-slot-games-jackpot-tips-revealed__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* FAQ Section */
.page-slot-games-jackpot-tips-revealed__faq-list {
    margin-top: 40px;
}

.page-slot-games-jackpot-tips-revealed__faq-item {
    background-color: var(--color-card-bg); /* Use card background for FAQ items */
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--color-text-main);
}

.page-slot-games-jackpot-tips-revealed__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-gold);
    user-select: none;
    list-style: none; /* Hide default marker for details/summary */
}

.page-slot-games-jackpot-tips-revealed__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Webkit browsers */
}

.page-slot-games-jackpot-tips-revealed__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-glow);
    transition: transform 0.3s ease;
}

.page-slot-games-jackpot-tips-revealed__faq-item[open] .page-slot-games-jackpot-tips-revealed__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
}

.page-slot-games-jackpot-tips-revealed__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.page-slot-games-jackpot-tips-revealed__faq-answer p {
    margin-bottom: 0; /* Remove default paragraph margin */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-slot-games-jackpot-tips-revealed__hero-content {
        padding-top: 30px;
    }
    .page-slot-games-jackpot-tips-revealed__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-slot-games-jackpot-tips-revealed__description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /* General mobile padding */
    .page-slot-games-jackpot-tips-revealed__container {
        padding: 0 15px;
    }

    /* Hero section */
    .page-slot-games-jackpot-tips-revealed__hero-section {
        padding-bottom: 40px;
        padding-top: 10px !important; /* body already handles --header-offset, small top padding is enough */
    }
    .page-slot-games-jackpot-tips-revealed__hero-content {
        padding-top: 20px; /* Adjust spacing for smaller screens */
    }
    .page-slot-games-jackpot-tips-revealed__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-slot-games-jackpot-tips-revealed__description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    .page-slot-games-jackpot-tips-revealed__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }

    /* Sections */
    .page-slot-games-jackpot-tips-revealed__section {
        padding: 40px 0;
    }
    .page-slot-games-jackpot-tips-revealed__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }
    .page-slot-games-jackpot-tips-revealed__sub-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-top: 25px;
        margin-bottom: 15px;
    }
    .page-slot-games-jackpot-tips-revealed__text-block,
    .page-slot-games-jackpot-tips-revealed__list-item {
        font-size: 0.95rem;
    }

    /* Images */
    .page-slot-games-jackpot-tips-revealed img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
}