/* style/slot-games-guide.css */

/* Custom properties for colors */
:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

/* Base styles for the page content */
.page-slot-games-guide {
    font-family: 'Arial', sans-serif;
    color: var(--color-text-main); /* Dark background, so light text */
    background-color: var(--color-background); /* Ensures consistency if body background isn't set globally */
    line-height: 1.6;
}

.page-slot-games-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    background-color: var(--color-background);
}

.page-slot-games-guide__hero-image-wrapper {
    width: 100%;
    max-width: 100%; /* Ensure image wrapper itself is responsive */
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and content */
}

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

.page-slot-games-guide__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-slot-games-guide__main-title {
    font-size: clamp(2rem, 5vw, 3.2rem); /* Responsive font size for H1 */
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-slot-games-guide__description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.page-slot-games-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 20px;
}

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

.page-slot-games-guide__btn-primary {
    background: var(--btn-gradient);
    color: var(--color-text-main);
    border: none;
}

.page-slot-games-guide__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

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

.page-slot-games-guide__btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-main);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games-guide__section {
    padding: 60px 20px;
    border-bottom: 1px solid var(--color-divider);
    background-color: var(--color-background);
}

.page-slot-games-guide__section:last-of-type {
    border-bottom: none;
}

.page-slot-games-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-slot-games-guide__heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-slot-games-guide__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.page-slot-games-guide__sub-heading {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--color-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-slot-games-guide__text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
}

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

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

.page-slot-games-guide__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-slot-games-guide__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

.page-slot-games-guide__list-item::before {
    content: '✅'; /* Checkmark for list items */
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
    line-height: 1;
}

.page-slot-games-guide__list-item ol > li::before {
    content: none; /* Remove checkmark for ordered lists */
}

.page-slot-games-guide__list-item ol {
    list-style: decimal;
    padding-left: 20px;
    margin-top: 10px;
}

.page-slot-games-guide__list-item ol li {
    margin-bottom: 5px;
}


.page-slot-games-guide__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-slot-games-guide__list--grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-slot-games-guide__card {
    background-color: var(--color-card-bg); /* Use specified card background */
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--color-text-main);
}

.page-slot-games-guide__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-slot-games-guide__card .page-slot-games-guide__sub-heading {
    color: var(--color-gold);
    margin-top: 0;
}

.page-slot-games-guide__card .page-slot-games-guide__text {
    color: var(--color-text-secondary);
}

.page-slot-games-guide__btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* FAQ Section */
.page-slot-games-guide__faq-list {
    margin-top: 30px;
}

.page-slot-games-guide__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-slot-games-guide__faq-item[open] {
    box-shadow: 0 0 20px rgba(87, 227, 141, 0.2); /* Glow on open */
}

.page-slot-games-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    color: var(--color-primary);
    font-size: 1.15rem;
    position: relative;
    list-style: none; /* For details/summary */
}

.page-slot-games-guide__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for details/summary */
}

.page-slot-games-guide__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
    color: var(--color-text-main);
}

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

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

.page-slot-games-guide__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

/* Highlight for keywords */
.page-slot-games-guide .highlight {
    color: var(--color-gold);
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-slot-games-guide__hero-content {
        padding: 0 30px;
    }
    .page-slot-games-guide__section {
        padding: 40px 20px;
    }
    .page-slot-games-guide__container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    /* Mobile-specific adjustments */
    .page-slot-games-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-slot-games-guide__hero-section {
        padding-bottom: 40px;
    }

    .page-slot-games-guide__main-title {
        font-size: 2rem;
    }

    .page-slot-games-guide__description {
        font-size: 1rem;
    }

    .page-slot-games-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-slot-games-guide__btn-primary,
    .page-slot-games-guide__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-slot-games-guide__section {
        padding: 30px 15px;
    }

    .page-slot-games-guide__heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-slot-games-guide__sub-heading {
        font-size: 1.2rem;
    }

    .page-slot-games-guide__text,
    .page-slot-games-guide__list-item {
        font-size: 0.95rem;
    }

    .page-slot-games-guide__list--grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-slot-games-guide__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-left: auto;
        margin-right: auto;
        border-radius: 8px;
    }

    .page-slot-games-guide__card {
        padding: 20px;
    }

    .page-slot-games-guide__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-slot-games-guide__faq-answer {
        padding: 0 20px 15px 20px;
    }
    
    /* Ensure all containing elements for images/buttons/videos are constrained */
    .page-slot-games-guide__section,
    .page-slot-games-guide__container,
    .page-slot-games-guide__cta-buttons,
    .page-slot-games-guide__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevents overflow */
        padding-left: 15px; /* Add padding to content containers */
        padding-right: 15px;
    }

    /* Specific adjustment for hero section padding */
    .page-slot-games-guide__hero-section {
        padding-left: 0;
        padding-right: 0;
        padding-top: 10px !important; /* Small top padding for mobile hero */
    }
    /* Override padding for container within hero to avoid double padding */
    .page-slot-games-guide__hero-section .page-slot-games-guide__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Ensure no filter is used for images */
.page-slot-games-guide img {
    filter: none;
}