/* style/slot-games.css */

/* Base Styles for the page-slot-games container */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
}

/* Header offset for fixed header */
.page-slot-games__hero-section {
    padding-top: var(--header-offset, 120px);
}

/* Sections */
.page-slot-games__section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-slot-games__dark-bg {
    background-color: #0d0d0d; /* Slightly lighter than pure black for sections */
    color: #ffffff;
}

.page-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Headings */
.page-slot-games__main-title {
    font-size: 3.2em;
    color: #26A9E0; /* Brand color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-slot-games__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for section titles */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-slot-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #26A9E0;
    border-radius: 2px;
}

.page-slot-games__card-title,
.page-slot-games__list-heading,
.page-slot-games__feature-title,
.page-slot-games__faq-title {
    font-size: 1.5em;
    color: #FFFFFF; /* White for card/list/feature titles on dark backgrounds */
    margin-bottom: 15px;
}

/* Paragraphs and text */
.page-slot-games__intro-text,
.page-slot-games__paragraph,
.page-slot-games__card-text,
.page-slot-games__feature-text {
    font-size: 1.1em;
    color: #f0f0f0; /* Light text for readability on dark backgrounds */
    margin-bottom: 20px;
}

.page-slot-games__highlight {
    color: #26A9E0; /* Highlight important keywords with brand color */
    font-weight: bold;
}

.page-slot-games__inline-link {
    color: #26A9E0; /* Brand color for inline links */
    text-decoration: underline;
}

.page-slot-games__inline-link:hover {
    color: #FFFFFF;
    text-decoration: none;
}

/* Buttons */
.page-slot-games__cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-slot-games__cta-buttons--center {
    justify-content: center;
}

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

.page-slot-games__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-slot-games__btn-primary:hover {
    background-color: #FFFFFF;
    color: #26A9E0;
    border-color: #FFFFFF;
}

.page-slot-games__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-slot-games__btn-secondary:hover {
    background-color: #26A9E0;
    color: #FFFFFF;
}

/* Images */
.page-slot-games__hero-image-wrapper {
    margin-top: 40px;
    text-align: center;
}

.page-slot-games__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

.page-slot-games__image-container {
    margin-top: 40px;
    text-align: center;
}

.page-slot-games__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

/* Cards Grid */
.page-slot-games__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-slot-games__card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark bg */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
    color: #ffffff; /* Ensure white text on card */
}

.page-slot-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Lists */
.page-slot-games__ordered-list,
.page-slot-games__unordered-list {
    text-align: left;
    margin-top: 30px;
    padding-left: 20px;
    list-style-position: inside;
}

.page-slot-games__ordered-list li,
.page-slot-games__unordered-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-slot-games__ordered-list li:last-child,
.page-slot-games__unordered-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Features Grid */
.page-slot-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-slot-games__feature-item {
    background-color: rgba(38, 169, 224, 0.1); /* Light brand color background */
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(38, 169, 224, 0.3);
    color: #ffffff;
}

/* FAQ Section */
.page-slot-games__faq {
    background-color: #000000; /* Pure black for FAQ section */
    color: #ffffff;
}

.page-slot-games__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-slot-games__faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.page-slot-games__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.page-slot-games__faq-question:hover .page-slot-games__faq-title {
    color: #26A9E0;
}

.page-slot-games__faq-title {
    margin: 0;
    font-size: 1.3em;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.page-slot-games__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

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

.page-slot-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px; /* Initial padding for collapsed state */
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #f0f0f0;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
    max-height: 1000px !important; /* Ensure it expands sufficiently */
    padding: 15px;
}

.page-slot-games__faq-answer p {
    margin: 0;
    padding-top: 10px; /* Spacing for paragraph inside answer */
    color: #f0f0f0;
}

/* CTA Section at the end */
.page-slot-games__cta {
    padding-bottom: 80px;
}

.page-slot-games__cta-content {
    background-color: rgba(38, 169, 224, 0.1); /* Light brand color background */
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(38, 169, 224, 0.3);
}

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

@media (max-width: 768px) {
    .page-slot-games__main-title {
        font-size: 2.2em;
    }
    .page-slot-games__section-title {
        font-size: 1.8em;
    }
    .page-slot-games__card-title,
    .page-slot-games__list-heading,
    .page-slot-games__feature-title,
    .page-slot-games__faq-title {
        font-size: 1.3em;
    }
    .page-slot-games__intro-text,
    .page-slot-games__paragraph,
    .page-slot-games__card-text,
    .page-slot-games__feature-text {
        font-size: 1em;
    }

    .page-slot-games__section {
        padding: 40px 15px;
    }

    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-slot-games__cards-grid,
    .page-slot-games__features-grid {
        grid-template-columns: 1fr;
    }

    /* Images responsive - crucial */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-slot-games__hero-image-wrapper,
    .page-slot-games__image-container,
    .page-slot-games__cta-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-slot-games__cta-content {
        padding: 30px 20px;
    }
}

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