.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: #F3F8FF; /* Text Main */
    background-color: var(--deep-navy-color); /* Body background from shared.css */
}

.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    transform: translateY(-50%); /* Pull up content over image slightly */
    background-color: rgba(16, 35, 63, 0.8); /* Card BG with transparency */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-slot-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 1px;
}

.page-slot-games__description {
    font-size: 1.1rem;
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 30px;
    line-height: 1.6;
}

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

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

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
    color: #F3F8FF; /* Text Main */
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-primary:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__btn-secondary {
    background: #10233F; /* Card BG */
    color: #F2C14E; /* Gold */
    border: 2px solid #244D84; /* Border color */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-secondary:hover {
    background: #244D84; /* Border color */
    color: #F3F8FF; /* Text Main */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background-color: #10233F; /* Card BG */
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #1B3357; /* Divider */
}

.page-slot-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2C14E; /* Gold */
    text-align: center;
    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: 3px;
    background-color: #2B73F6; /* Button gradient start */
    border-radius: 2px;
}

.page-slot-games__text-block {
    font-size: 1rem;
    line-height: 1.7;
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 30px;
    text-align: justify;
}

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

.page-slot-games__feature-item {
    background-color: #08162B; /* Deep Navy */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #1B3357; /* Divider */
    transition: transform 0.3s ease;
}

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

.page-slot-games__feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #244D84; /* Border color */
}

.page-slot-games__feature-title {
    font-size: 1.5rem;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 10px;
}

.page-slot-games__feature-description {
    font-size: 0.95rem;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
}

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

.page-slot-games__card {
    background-color: #08162B; /* Deep Navy */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #1B3357; /* Divider */
    transition: transform 0.3s ease;
    text-align: center;
    padding-bottom: 25px;
}

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

.page-slot-games__card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 15px;
    border-bottom: 1px solid #244D84; /* Border color */
}

.page-slot-games__card-title {
    font-size: 1.6rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-slot-games__card-description {
    font-size: 0.95rem;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
    padding: 0 15px;
}

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

.page-slot-games__step-item {
    background-color: #08162B; /* Deep Navy */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #1B3357; /* Divider */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-slot-games__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
    color: #F3F8FF; /* Text Main */
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-slot-games__step-title {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
}

.page-slot-games__step-description {
    font-size: 0.95rem;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-slot-games__btn-link {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #244D84; /* Border color */
    color: #F3F8FF; /* Text Main */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-slot-games__btn-link:hover {
    background-color: #1D5FD1; /* Auxiliary color */
}

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

.page-slot-games__list-item {
    background-color: #08162B; /* Deep Navy */
    border: 1px solid #1B3357; /* Divider */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #F3F8FF; /* Text Main */
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.page-slot-games__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-slot-games__security-item {
    background-color: #08162B; /* Deep Navy */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #1B3357; /* Divider */
    transition: transform 0.3s ease;
}

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

.page-slot-games__security-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #244D84; /* Border color */
}

.page-slot-games__security-title {
    font-size: 1.5rem;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 10px;
}

.page-slot-games__security-description {
    font-size: 0.95rem;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
}

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

.page-slot-games__faq-item {
    background-color: #08162B; /* Deep Navy */
    border: 1px solid #1B3357; /* Divider */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #F3F8FF; /* Text Main */
    cursor: pointer;
    list-style: none;
    transition: background-color 0.3s ease;
}

.page-slot-games__faq-question::-webkit-details-marker {
    display: none;
}

.page-slot-games__faq-item[open] > .page-slot-games__faq-question {
    background-color: #113B7A; /* Main color */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.page-slot-games__faq-qtext {
    flex-grow: 1;
    pointer-events: none; /* Allow clicking anywhere on summary to toggle */
}

.page-slot-games__faq-toggle {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold */
    margin-left: 15px;
    pointer-events: none; /* Allow clicking anywhere on summary to toggle */
}

.page-slot-games__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #AFC4E8; /* Text Secondary */
}

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

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

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 20px;
    }

    .page-slot-games__hero-content {
        transform: translateY(-20%); /* Less pull-up on mobile */
        padding: 20px;
        margin: 0 15px; /* Add side margin */
    }

    .page-slot-games__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 10px;
    }

    .page-slot-games__description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-slot-games__section {
        margin: 20px 15px;
        padding: 25px 15px;
    }

    .page-slot-games__section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 25px;
    }

    .page-slot-games__text-block {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .page-slot-games__feature-grid,
    .page-slot-games__highlight-cards,
    .page-slot-games__guide-steps,
    .page-slot-games__security-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-slot-games__feature-item,
    .page-slot-games__card,
    .page-slot-games__step-item,
    .page-slot-games__security-item {
        padding: 20px;
    }

    .page-slot-games__feature-image,
    .page-slot-games__card-image,
    .page-slot-games__security-image {
        height: 180px;
        max-width: 100% !important;
        width: 100% !important;
    }

    .page-slot-games__feature-title,
    .page-slot-games__card-title,
    .page-slot-games__step-title,
    .page-slot-games__security-title {
        font-size: 1.3rem;
    }

    .page-slot-games__feature-description,
    .page-slot-games__card-description,
    .page-slot-games__step-description,
    .page-slot-games__security-description {
        font-size: 0.85rem;
    }

    .page-slot-games__btn-link {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .page-slot-games__list-item {
        padding: 15px;
        font-size: 0.9rem;
    }

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

    .page-slot-games__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.9rem;
    }

    /* Generic image and container responsiveness */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-slot-games__section,
    .page-slot-games__card,
    .page-slot-games__container,
    .page-slot-games__hero-image-wrapper,
    .page-slot-games__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

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