.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
}

.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 */
    background-color: #F4F7FB; /* Background */
    text-align: center;
    overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2F6BFF; /* Primary color as fallback */
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Default cover for desktop */
    max-height: 600px; /* Limit height for aesthetic */
}

.page-slot-games__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #FFFFFF; /* Card BG for content block */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-50px); /* Lift content block slightly over the image area */
    position: relative;
    z-index: 1;
    border: 1px solid #D6E2FF; /* Border */
}

.page-slot-games__main-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #2F6BFF; /* Primary color for H1 */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-slot-games__hero-description {
    font-size: 1.2em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-slot-games__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

.page-slot-games__btn-secondary {
    background: #ffffff;
    color: #2F6BFF; /* Primary color */
    border: 2px solid #2F6BFF; /* Primary color */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games__btn-secondary:hover {
    background: #e0e0e0;
    color: #2F6BFF;
    border-color: #2F6BFF;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-slot-games__section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background */
}

.page-slot-games__section:nth-of-type(even) {
    background-color: #ffffff; /* Card BG for alternating sections */
}

.page-slot-games__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-slot-games__text-block {
    font-size: 1.1em;
    color: #333333; /* Darker text for readability */
    margin-bottom: 20px;
    text-align: justify;
}

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

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

.page-slot-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.page-slot-games__game-tile {
    background-color: #ffffff; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border */
}

.page-slot-games__game-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-slot-games__game-tile img {
    width: 250px; /* Fixed width for desktop */
    height: 250px; /* Fixed height for desktop */
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__game-title {
    font-size: 1.4em;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 10px;
}

.page-slot-games__game-description {
    font-size: 0.95em;
    color: #333333;
    line-height: 1.5;
}

.page-slot-games__cta-center {
    text-align: center;
    margin-top: 50px;
}

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

.page-slot-games__step-item {
    background-color: #ffffff; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    border: 1px solid #D6E2FF; /* Border */
}

.page-slot-games__step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-slot-games__step-title {
    font-size: 1.5em;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 15px;
}

.page-slot-games__step-description {
    font-size: 1em;
    color: #333333;
    line-height: 1.5;
}

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

.page-slot-games__promo-item {
    background-color: #F4F7FB; /* Background color for promo items in a white section */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border: 1px solid #D6E2FF; /* Border */
}

.page-slot-games__promo-item:nth-child(odd) {
    background-color: #ffffff; /* Card BG for alternating promo items */
}

.page-slot-games__promo-title {
    font-size: 1.4em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

.page-slot-games__promo-description {
    font-size: 1em;
    color: #333333;
    line-height: 1.5;
}

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

.page-slot-games__feature-item {
    background-color: #ffffff; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    border: 1px solid #D6E2FF; /* Border */
}

.page-slot-games__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-slot-games__feature-title {
    font-size: 1.5em;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 15px;
}

.page-slot-games__feature-description {
    font-size: 1em;
    color: #333333;
    line-height: 1.5;
}

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

.page-slot-games__faq-item {
    background-color: #ffffff; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    cursor: pointer;
    background-color: #F4F7FB; /* Background */
    user-select: none;
    transition: background-color 0.3s ease;
}

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

.page-slot-games__faq-qtext {
    flex-grow: 1;
}

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #2F6BFF; /* Primary color */
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
    content: "\2212"; /* Change to minus when open */
}

.page-slot-games__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: #333333;
    line-height: 1.6;
}

.page-slot-games__faq-answer p {
    margin: 0;
}

.page-slot-games__faq-answer a {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-slot-games__faq-answer a:hover {
    text-decoration: underline;
}

.page-slot-games__conclusion .page-slot-games__text-block {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-slot-games__main-title {
        font-size: 2.5em;
    }
    .page-slot-games__section-title {
        font-size: 2em;
    }
    .page-slot-games__hero-content {
        transform: translateY(-30px);
        margin: 0 20px;
    }
    .page-slot-games__game-grid,
    .page-slot-games__step-list,
    .page-slot-games__promo-list,
    .page-slot-games__feature-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* General text and container adjustments */
    .page-slot-games {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-slot-games__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Hero section */
    .page-slot-games__hero-section {
        padding-top: 10px !important; /* Small top padding */
    }
    .page-slot-games__hero-image {
        object-fit: contain !important; /* Hero mobile must be contain */
        max-height: 300px;
        aspect-ratio: unset !important; /* unset aspect ratio */
    }
    .page-slot-games__hero-content {
        padding: 30px 15px;
        transform: translateY(-20px);
        margin: 0 15px;
    }
    .page-slot-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.2em);
        margin-bottom: 15px;
    }
    .page-slot-games__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    /* CTA Buttons */
    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-slot-games__cta-center {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Section Titles */
    .page-slot-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    /* Game Grid */
    .page-slot-games__game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        overflow-x: hidden !important;
    }
    .page-slot-games__game-tile img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        aspect-ratio: 1/1 !important;
        object-fit: cover;
    }
    .page-slot-games__game-tile {
        padding: 15px;
        overflow: hidden !important;
    }

    /* Step List, Promo List, Feature List */
    .page-slot-games__step-list,
    .page-slot-games__promo-list,
    .page-slot-games__feature-list {
        grid-template-columns: 1fr;
        gap: 25px;
        overflow-x: hidden !important;
    }

    /* FAQ */
    .page-slot-games__faq-list {
        margin: 30px 0 0 0;
    }
    .page-slot-games__faq-item {
        margin-left: 15px;
        margin-right: 15px;
    }
    .page-slot-games__faq-question {
        padding: 15px 20px;
        font-size: 1.05em;
    }
    .page-slot-games__faq-answer {
        padding: 0 20px 15px 20px;
    }

    /* Generic image and container responsive rules for content area */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .page-slot-games__section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    .page-slot-games__text-block {
        padding: 0;
    }
}