.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: #FFF1E8; /* Text Main */
    background-color: #140C0C; /* Background */
    line-height: 1.6;
}

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

.page-slot-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px;
    z-index: 1;
    border-radius: 8px;
}

.page-slot-games__hero-content {
    position: relative; /* Ensure content is below image in DOM, z-index for visual layering if needed */
    max-width: 900px;
    padding: 30px 20px;
    background: rgba(42, 18, 18, 0.8); /* Card BG with transparency */
    border-radius: 12px;
    margin-top: -80px; /* Pull up slightly over the image for visual effect, but not covering text */
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: #F3C54D; /* Gold */
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #FFF1E8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slot-games__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #F3C54D; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-slot-games__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
    color: #FFF1E8;
}

.page-slot-games__text-block a {
    color: #FFB04A;
    text-decoration: none;
    font-weight: bold;
}

.page-slot-games__text-block a:hover {
    text-decoration: underline;
}

.page-slot-games__intro-section {
    padding: 60px 0;
    background-color: #140C0C;
}

.page-slot-games__game-types-section {
    padding: 80px 0;
    background-color: #2A1212; /* Card BG */
}

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

.page-slot-games__game-type-card {
    background: #140C0C; /* Background */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__game-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slot-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-slot-games__game-type-card .page-slot-games__card-title {
    font-size: 1.5rem;
    color: #F3C54D; /* Gold */
    margin: 20px 20px 10px;
    text-align: center;
}

.page-slot-games__game-type-card .page-slot-games__card-description {
    font-size: 0.95rem;
    color: #FFF1E8;
    padding: 0 20px;
    text-align: justify;
    flex-grow: 1;
}

.page-slot-games__game-type-card .page-slot-games__card-button {
    display: block;
    text-align: center;
    margin: 20px;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
    color: #FFF1E8;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-slot-games__game-type-card .page-slot-games__card-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-slot-games__features-section {
    padding: 80px 0;
    background-color: #140C0C;
}

.page-slot-games__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-slot-games__feature-item {
    text-align: center;
    background: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-slot-games__feature-item:hover {
    transform: translateY(-8px);
}

.page-slot-games__feature-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
}

.page-slot-games__feature-title {
    font-size: 1.4rem;
    color: #F3C54D; /* Gold */
    margin-bottom: 10px;
}

.page-slot-games__feature-description {
    font-size: 1rem;
    color: #FFF1E8;
}

.page-slot-games__guide-section {
    padding: 80px 0;
    background-color: #2A1212; /* Card BG */
}

.page-slot-games__guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.page-slot-games__guide-item {
    background: #140C0C; /* Background */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-games__guide-step-title {
    font-size: 1.5rem;
    color: #FFB04A; /* Button color for emphasis */
    margin-bottom: 15px;
    position: relative;
    padding-left: 45px;
}

.page-slot-games__guide-step-title::before {
    content: attr(data-step-number);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #F3C54D; /* Gold */
    color: #140C0C;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.page-slot-games__guide-item:nth-child(1) .page-slot-games__guide-step-title::before { content: '1'; }
.page-slot-games__guide-item:nth-child(2) .page-slot-games__guide-step-title::before { content: '2'; }
.page-slot-games__guide-item:nth-child(3) .page-slot-games__guide-step-title::before { content: '3'; }
.page-slot-games__guide-item:nth-child(4) .page-slot-games__guide-step-title::before { content: '4'; }

.page-slot-games__guide-description {
    font-size: 1rem;
    color: #FFF1E8;
    text-align: justify;
}

.page-slot-games__strategy-section {
    padding: 80px 0;
    background-color: #140C0C;
}

.page-slot-games__strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-slot-games__strategy-item {
    background: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-games__strategy-title {
    font-size: 1.4rem;
    color: #F3C54D; /* Gold */
    margin-bottom: 15px;
}

.page-slot-games__strategy-description {
    font-size: 1rem;
    color: #FFF1E8;
    text-align: justify;
}

.page-slot-games__promotions-section {
    padding: 80px 0;
    background-color: #2A1212; /* Card BG */
}

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

.page-slot-games__promotion-card {
    background: #140C0C; /* Background */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games__promotion-card .page-slot-games__card-image {
    height: 200px;
}

.page-slot-games__promotion-card .page-slot-games__card-title {
    font-size: 1.5rem;
    color: #F3C54D;
    margin: 20px 20px 10px;
    text-align: center;
}

.page-slot-games__promotion-card .page-slot-games__card-description {
    font-size: 0.95rem;
    color: #FFF1E8;
    padding: 0 20px;
    text-align: justify;
    flex-grow: 1;
}

.page-slot-games__promotion-card .page-slot-games__card-button {
    display: block;
    text-align: center;
    margin: 20px;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-slot-games__promotion-card .page-slot-games__card-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-slot-games__security-section {
    padding: 80px 0;
    background-color: #140C0C;
    text-align: center;
}

.page-slot-games__security-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-slot-games__security-item {
    background: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.page-slot-games__security-title {
    font-size: 1.4rem;
    color: #F3C54D; /* Gold */
    margin-bottom: 15px;
}

.page-slot-games__security-description {
    font-size: 1rem;
    color: #FFF1E8;
}

.page-slot-games__security-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 50px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__faq-section {
    padding: 80px 0;
    background-color: #2A1212; /* Card BG */
}

.page-slot-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-slot-games__faq-item {
    background: #140C0C; /* Background */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    color: #F3C54D; /* Gold */
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.page-slot-games__faq-item details > summary {
    list-style: none;
}

.page-slot-games__faq-item details > summary::-webkit-details-marker {
    display: none;
}

.page-slot-games__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: #FFB04A;
    transition: transform 0.3s ease;
}

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

.page-slot-games__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: #FFF1E8;
    text-align: justify;
}

.page-slot-games__faq-answer p {
    margin-top: 0;
    margin-bottom: 10px;
}

.page-slot-games__cta-section {
    padding: 80px 0;
    background-color: #140C0C;
    text-align: center;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games a[class*="button"],
.page-slot-games a[class*="btn"] {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
}

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
    color: #FFF1E8; /* Text Main */
    border: 2px solid transparent;
}

.page-slot-games__btn-primary:hover {
    background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-secondary {
    background: #2A1212; /* Card BG */
    color: #FFB04A; /* Button color for text */
    border: 2px solid #FFB04A;
}

.page-slot-games__btn-secondary:hover {
    background: #FFB04A;
    color: #140C0C;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General image responsiveness */
.page-slot-games img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Dark section text color override if needed */
.page-slot-games__dark-section {
    color: #FFF1E8; /* Ensure light text on dark background */
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .page-slot-games__hero-content {
        margin-top: -60px;
        padding: 25px 15px;
    }

    .page-slot-games__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-slot-games__hero-description {
        font-size: clamp(0.95rem, 1.7vw, 1.15rem);
    }

    .page-slot-games__game-types-grid,
    .page-slot-games__feature-list,
    .page-slot-games__strategy-list,
    .page-slot-games__promotions-grid,
    .page-slot-games__security-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .page-slot-games__section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    }

    .page-slot-games__text-block {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
    }

    .page-slot-games__hero-image {
        max-height: 400px;
    }

    .page-slot-games__hero-content {
        margin-top: -40px;
        padding: 20px 10px;
        width: calc(100% - 30px); /* Adjust width for padding */
    }

    .page-slot-games__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-slot-games__hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .page-slot-games__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important; /* Ensure container is full width */
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .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__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }

    .page-slot-games__text-block {
        font-size: 0.95rem;
    }

    /* Product/Game Types Grid */
    .page-slot-games__game-types-grid,
    .page-slot-games__promotions-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }

    /* General Images and Containers */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-slot-games__container,
    .page-slot-games__section,
    .page-slot-games__card,
    .page-slot-games__game-type-card,
    .page-slot-games__feature-item,
    .page-slot-games__guide-item,
    .page-slot-games__strategy-item,
    .page-slot-games__promotion-card,
    .page-slot-games__security-item,
    .page-slot-games__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Other Content Modules (Features, Strategy, Security lists) */
    .page-slot-games__feature-list,
    .page-slot-games__strategy-list,
    .page-slot-games__security-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-slot-games__feature-icon {
        width: 100px;
        height: 100px;
    }

    .page-slot-games__guide-item,
    .page-slot-games__strategy-item,
    .page-slot-games__security-item {
        padding: 20px;
    }

    .page-slot-games__guide-step-title {
        font-size: 1.3rem;
    }

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

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