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

/* Base styles */
.page-slot-games-latest-jackpot-slots {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: var(--dark-bg);
}

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

.page-slot-games-latest-jackpot-slots__section-title {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-slot-games-latest-jackpot-slots__section-description {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-slot-games-latest-jackpot-slots__section-description a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-slot-games-latest-jackpot-slots__btn-primary,
.page-slot-games-latest-jackpot-slots__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure button responsiveness */
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games-latest-jackpot-slots__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-slot-games-latest-jackpot-slots__btn-primary:hover {
    background-color: #1a7aab;
    border-color: #1a7aab;
}

.page-slot-games-latest-jackpot-slots__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-slot-games-latest-jackpot-slots__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
}

.page-slot-games-latest-jackpot-slots__image-full-width {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-slot-games-latest-jackpot-slots__hero-section {
    position: relative;
    padding: 100px 0;
    padding-top: var(--header-offset, 120px);
    text-align: center;
    overflow: hidden;
    background-color: #26A9E0; /* Brand color as background */
    color: #ffffff;
}

.page-slot-games-latest-jackpot-slots__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    z-index: 1;
}

.page-slot-games-latest-jackpot-slots__hero-section .page-slot-games-latest-jackpot-slots__container {
    position: relative;
    z-index: 2;
}

.page-slot-games-latest-jackpot-slots__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-slot-games-latest-jackpot-slots__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games-latest-jackpot-slots__hero-description a {
    color: #ffffff;
    text-decoration: underline;
}

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

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

/* Intro Section */
.page-slot-games-latest-jackpot-slots__intro-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #333333;
}

.page-slot-games-latest-jackpot-slots__intro-section .page-slot-games-latest-jackpot-slots__section-title {
    color: #26A9E0;
}

.page-slot-games-latest-jackpot-slots__intro-section .page-slot-games-latest-jackpot-slots__section-description {
    color: #555555;
}

.page-slot-games-latest-jackpot-slots__intro-section .page-slot-games-latest-jackpot-slots__section-description a {
    color: #26A9E0;
}

/* Featured Games Section */
.page-slot-games-latest-jackpot-slots__featured-games {
    padding: 80px 0;
    background-color: #0d0d0d; /* Dark background */
    color: #ffffff;
}

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

.page-slot-games-latest-jackpot-slots__game-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-slot-games-latest-jackpot-slots__game-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

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

.page-slot-games-latest-jackpot-slots__card-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #ffffff;
}

.page-slot-games-latest-jackpot-slots__card-title a {
    color: #ffffff;
    text-decoration: none;
}

.page-slot-games-latest-jackpot-slots__card-title a:hover {
    text-decoration: underline;
    color: #26A9E0;
}

.page-slot-games-latest-jackpot-slots__card-text {
    color: #cccccc;
    margin-bottom: 20px;
}

/* Why Thabet Section */
.page-slot-games-latest-jackpot-slots__why-thabet {
    padding: 80px 0;
    background-color: #ffffff;
    color: #333333;
}

.page-slot-games-latest-jackpot-slots__why-thabet .page-slot-games-latest-jackpot-slots__section-title {
    color: #26A9E0;
}

.page-slot-games-latest-jackpot-slots__why-thabet .page-slot-games-latest-jackpot-slots__section-description {
    color: #555555;
}

.page-slot-games-latest-jackpot-slots__why-thabet .page-slot-games-latest-jackpot-slots__section-description a {
    color: #26A9E0;
}

.page-slot-games-latest-jackpot-slots__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-slot-games-latest-jackpot-slots__list-item {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
    color: #333333;
}

.page-slot-games-latest-jackpot-slots__list-item strong {
    color: #26A9E0;
}

/* How to Play Section */
.page-slot-games-latest-jackpot-slots__how-to-play {
    padding: 80px 0;
    background-color: #26A9E0;
    color: #ffffff;
}

.page-slot-games-latest-jackpot-slots__how-to-play .page-slot-games-latest-jackpot-slots__section-title {
    color: #ffffff;
}

.page-slot-games-latest-jackpot-slots__how-to-play .page-slot-games-latest-jackpot-slots__section-description {
    color: #f0f0f0;
}

.page-slot-games-latest-jackpot-slots__how-to-play .page-slot-games-latest-jackpot-slots__section-description a {
    color: #ffffff;
    text-decoration: underline;
}

.page-slot-games-latest-jackpot-slots__step-list {
    list-style: decimal;
    padding-left: 25px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-slot-games-latest-jackpot-slots__step-list .page-slot-games-latest-jackpot-slots__list-item {
    margin-bottom: 15px;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    color: #f0f0f0;
}

.page-slot-games-latest-jackpot-slots__step-list .page-slot-games-latest-jackpot-slots__list-item strong {
    color: #ffffff;
}

.page-slot-games-latest-jackpot-slots__step-list .page-slot-games-latest-jackpot-slots__list-item a {
    color: #ffffff;
    text-decoration: underline;
}

.page-slot-games-latest-jackpot-slots__cta-buttons-center {
    text-align: center;
    margin-top: 40px;
}

/* Promotions Section */
.page-slot-games-latest-jackpot-slots__promotions {
    padding: 80px 0;
    background-color: #ffffff;
    color: #333333;
}

.page-slot-games-latest-jackpot-slots__promotions .page-slot-games-latest-jackpot-slots__section-title {
    color: #26A9E0;
}

.page-slot-games-latest-jackpot-slots__promotions .page-slot-games-latest-jackpot-slots__section-description {
    color: #555555;
}

.page-slot-games-latest-jackpot-slots__promotions .page-slot-games-latest-jackpot-slots__section-description a {
    color: #26A9E0;
}

.page-slot-games-latest-jackpot-slots__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-slot-games-latest-jackpot-slots__promo-list .page-slot-games-latest-jackpot-slots__list-item {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
    color: #333333;
    text-align: center;
}

.page-slot-games-latest-jackpot-slots__promo-list .page-slot-games-latest-jackpot-slots__list-item strong {
    color: #26A9E0;
}

/* Tips and Strategy Section */
.page-slot-games-latest-jackpot-slots__tips-strategy {
    padding: 80px 0;
    background-color: #0d0d0d;
    color: #ffffff;
}

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

.page-slot-games-latest-jackpot-slots__strategy-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games-latest-jackpot-slots__strategy-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-slot-games-latest-jackpot-slots__strategy-text {
    color: #cccccc;
}

.page-slot-games-latest-jackpot-slots__strategy-text a {
    color: #ffffff;
    text-decoration: underline;
}

/* FAQ Section */
.page-slot-games-latest-jackpot-slots__faq-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #333333;
}

.page-slot-games-latest-jackpot-slots__faq-section .page-slot-games-latest-jackpot-slots__section-title {
    color: #26A9E0;
}

.page-slot-games-latest-jackpot-slots__faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-slot-games-latest-jackpot-slots__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #333333;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-slot-games-latest-jackpot-slots__faq-question:hover {
    background-color: #e0e0e0;
}

.page-slot-games-latest-jackpot-slots__faq-toggle {
    font-size: 1.5em;
    font-weight: normal;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

.page-slot-games-latest-jackpot-slots__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555555;
}

.page-slot-games-latest-jackpot-slots__faq-item.active .page-slot-games-latest-jackpot-slots__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 15px 25px;
}

.page-slot-games-latest-jackpot-slots__faq-item.active .page-slot-games-latest-jackpot-slots__faq-toggle {
    transform: rotate(45deg);
}

.page-slot-games-latest-jackpot-slots__faq-answer p {
    margin: 0 0 10px 0;
}

.page-slot-games-latest-jackpot-slots__faq-answer a {
    color: #26A9E0;
    text-decoration: underline;
}

/* CTA Bottom Section */
.page-slot-games-latest-jackpot-slots__cta-bottom {
    padding: 80px 0;
    background-color: #EA7C07; /* Login color for strong CTA */
    color: #ffffff;
    text-align: center;
}

.page-slot-games-latest-jackpot-slots__cta-bottom .page-slot-games-latest-jackpot-slots__section-title {
    color: #ffffff;
}

.page-slot-games-latest-jackpot-slots__cta-bottom .page-slot-games-latest-jackpot-slots__section-description {
    color: #f0f0f0;
}

.page-slot-games-latest-jackpot-slots__cta-bottom .page-slot-games-latest-jackpot-slots__section-description a {
    color: #ffffff;
    text-decoration: underline;
}

.page-slot-games-latest-jackpot-slots__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-slot-games-latest-jackpot-slots__hero-title {
        font-size: 3em;
    }

    .page-slot-games-latest-jackpot-slots__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-slot-games-latest-jackpot-slots {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .page-slot-games-latest-jackpot-slots__hero-section {
        padding: 80px 0;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-slot-games-latest-jackpot-slots__hero-title {
        font-size: 2.5em;
    }

    .page-slot-games-latest-jackpot-slots__hero-description {
        font-size: 1em;
    }

    .page-slot-games-latest-jackpot-slots__section-title {
        font-size: 1.8em;
    }

    .page-slot-games-latest-jackpot-slots__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-slot-games-latest-jackpot-slots__hero-cta-buttons,
    .page-slot-games-latest-jackpot-slots__cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .page-slot-games-latest-jackpot-slots__btn-primary,
    .page-slot-games-latest-jackpot-slots__btn-secondary {
        width: 100% !important;
        max-width: 300px !important; /* Constrain width for better mobile appearance */
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-slot-games-latest-jackpot-slots__game-grid,
    .page-slot-games-latest-jackpot-slots__feature-list,
    .page-slot-games-latest-jackpot-slots__promo-list,
    .page-slot-games-latest-jackpot-slots__strategy-grid {
        grid-template-columns: 1fr;
    }

    .page-slot-games-latest-jackpot-slots__container {
        padding: 0 15px;
    }

    .page-slot-games-latest-jackpot-slots img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .page-slot-games-latest-jackpot-slots__section,
    .page-slot-games-latest-jackpot-slots__card,
    .page-slot-games-latest-jackpot-slots__container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow-x: hidden;
    }
    .page-slot-games-latest-jackpot-slots__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-slot-games-latest-jackpot-slots__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-slot-games-latest-jackpot-slots__faq-answer {
        padding: 0 20px;
    }
    .page-slot-games-latest-jackpot-slots__faq-item.active .page-slot-games-latest-jackpot-slots__faq-answer {
        padding: 15px 20px;
    }
}