/* style/slot-games.css */
.page-slot-games {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light/white body background */
    background-color: #f8f8f8;
}

.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure spacing for fixed header */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 500px;
    background-color: #1A202C;
}

.page-slot-games__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.6)); /* Dark overlay for text readability */
    z-index: 1;
}

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

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
}

.page-slot-games__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-slot-games__hero-description {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.page-slot-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-slot-games__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.page-slot-games__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #000000;
}

.page-slot-games__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on transparent/dark background */
    border: 2px solid #FFD700;
}

.page-slot-games__btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C; /* Dark text on gold background on hover */
}

.page-slot-games__btn--margin-top {
    margin-top: 20px;
}

.page-slot-games__section {
    padding: 60px 0;
    margin-bottom: 0;
}

.page-slot-games__section:nth-of-type(even) {
    background-color: #f8f8f8;
    color: #333333;
}

.page-slot-games__section:nth-of-type(odd) {
    background-color: #ffffff;
    color: #333333;
}

.page-slot-games__dark-section {
    background-color: #1A202C;
    color: #ffffff;
}

.page-slot-games__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-slot-games__section-subtitle {
    font-size: 1.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
}

.page-slot-games__content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-slot-games__content-area {
    font-size: 1.1em;
    line-height: 1.7;
}

.page-slot-games__content-area--flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-slot-games__content-area--flex-reverse {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-direction: row-reverse;
}

.page-slot-games__text-content {
    flex: 1;
}

.page-slot-games__text-block {
    margin-bottom: 15px;
}

.page-slot-games__text-block--center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__text-block--small {
    font-size: 0.9em;
    opacity: 0.8;
}

.page-slot-games__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.page-slot-games__image--center {
    display: block;
    margin: 30px auto;
    max-width: 800px;
}

.page-slot-games__image--right {
    margin-left: 40px;
    max-width: 50%;
}

.page-slot-games__image--left {
    margin-right: 40px;
    max-width: 50%;
}

.page-slot-games__image--margin-top {
    margin-top: 40px;
}

.page-slot-games__highlights-grid,
.page-slot-games__cards-grid,
.page-slot-games__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-slot-games__card {
    background-color: #ffffff; /* White background for cards */
    color: #333333; /* Dark text */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-slot-games__dark-section .page-slot-games__card {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__card:hover {
    transform: translateY(-5px);
}

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

.page-slot-games__card-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-slot-games__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-slot-games__list--ordered {
    counter-reset: list-counter;
}

.page-slot-games__list--ordered li {
    counter-increment: list-counter;
    margin-bottom: 25px;
    position: relative;
    padding-left: 45px;
}

.page-slot-games__list--ordered li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #FFD700;
    color: #1A202C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

.page-slot-games__list li {
    margin-bottom: 15px;
}

.page-slot-games__list-title {
    font-size: 1.2em;
    color: #FFD700;
    margin-bottom: 5px;
}

.page-slot-games__video-container {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 20px auto 0;
    display: block;
    cursor: pointer;
}

.page-slot-games__faq-list {
    margin-top: 30px;
}

.page-slot-games__faq-item {
    background-color: #1A202C; /* Dark background for FAQ items */
    color: #ffffff; /* White text */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-weight: bold;
    cursor: pointer;
    background-color: #FFD700; /* Gold background for question */
    color: #1A202C; /* Dark text for question */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1em;
}

.page-slot-games__faq-question:hover {
    background-color: #e6c200;
}

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-slot-games__faq-item.active .page-slot-games__faq-toggle {
    transform: rotate(45deg);
}

.page-slot-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #1A202C; /* Dark background for answer */
    color: #f0f0f0; /* Light text for answer */
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to reveal content */
    padding: 15px 25px 25px;
}

.page-slot-games__text-link {
    color: #FFD700;
    text-decoration: underline;
}

.page-slot-games__text-link:hover {
    color: #e6c200;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-slot-games__hero-title {
        font-size: 2.8em;
    }

    .page-slot-games__section-title {
        font-size: 2em;
    }

    .page-slot-games__content-area--flex,
    .page-slot-games__content-area--flex-reverse {
        flex-direction: column;
    }

    .page-slot-games__image--right,
    .page-slot-games__image--left {
        margin: 30px auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-slot-games video,
    .page-slot-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-slot-games__section,
    .page-slot-games__container,
    .page-slot-games__card,
    .page-slot-games__video-section,
    .page-slot-games__video-container,
    .page-slot-games__video-wrapper,
    .page-slot-games__cta-buttons,
    .page-slot-games__button-group,
    .page-slot-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-slot-games__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-slot-games__cta-button,
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary,
    .page-slot-games a[class*="button"],
    .page-slot-games a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-slot-games__cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .page-slot-games__hero-title {
        font-size: 2.2em;
    }

    .page-slot-games__hero-description {
        font-size: 1em;
    }

    .page-slot-games__section-title {
        font-size: 1.8em;
    }

    .page-slot-games__content-area {
        font-size: 1em;
    }

    .page-slot-games__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-slot-games__faq-answer {
        padding: 0 20px;
    }

    .page-slot-games__faq-item.active .page-slot-games__faq-answer {
        padding: 10px 20px 20px;
    }

    .page-slot-games__list--ordered li {
        padding-left: 35px;
    }

    .page-slot-games__list--ordered li::before {
        width: 25px;
        height: 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-slot-games__hero-title {
        font-size: 1.8em;
    }

    .page-slot-games__section-title {
        font-size: 1.5em;
    }
}