:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg: #17191F;
    --page-bg: #0D0E12;
    --text-main: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
}

.page-slot-games {
    color: var(--text-main); /* Dark body background, so light text */
    background-color: var(--page-bg);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-slot-games__section {
    padding: 60px 0;
}

.page-slot-games__dark-bg {
    background-color: var(--page-bg);
    color: var(--text-main);
}

.page-slot-games__section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-slot-games__text-block {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-main);
}

.page-slot-games__highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* body already handles header offset, small top padding */
    overflow: hidden;
    text-align: center;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height of hero image */
    overflow: hidden;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: 40px;
    padding: 0 20px;
}

.page-slot-games__main-title {
    font-size: clamp(36px, 5vw, 60px); /* Using clamp for H1 */
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-description {
    font-size: 20px;
    color: var(--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;
    flex-wrap: wrap;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    text-align: center;
}

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-slot-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

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

.page-slot-games__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Image & Card styles */
.page-slot-games__image-container {
    margin: 40px 0;
    text-align: center;
}

.page-slot-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: block; /* Ensures max-width works correctly */
    margin: 0 auto;
}

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

.page-slot-games__grid--2-col {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-slot-games__card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-slot-games__card-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slot-games__card-text {
    font-size: 16px;
    color: var(--text-main);
}

/* Feature Items */
.page-slot-games__feature-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

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

.page-slot-games__feature-title {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__feature-description {
    font-size: 16px;
    color: var(--text-main);
}

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

.page-slot-games__step-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.page-slot-games__step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games__step-title {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slot-games__step-description {
    font-size: 16px;
    color: var(--text-main);
}

/* Strategy List */
.page-slot-games__strategy-list,
.page-slot-games__promo-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    gap: 20px;
}

.page-slot-games__list-item {
    background-color: var(--card-bg);
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 17px;
    color: var(--text-main);
}

.page-slot-games__list-item strong {
    color: var(--secondary-color);
}

/* FAQ Section */
.page-slot-games__faq-list {
    margin-top: 40px;
}

.page-slot-games__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main);
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary-color);
    user-select: none;
    list-style: none; /* For details/summary */
}

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

.page-slot-games__faq-toggle {
    font-size: 24px;
    line-height: 1;
    margin-left: 15px;
}

.page-slot-games__faq-answer {
    padding: 0 20px 20px;
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.7;
}

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

/* Conclusion Section */
.page-slot-games__conclusion-content {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games__hero-content {
        margin-top: 20px;
    }
    .page-slot-games__main-title {
        font-size: clamp(32px, 4.5vw, 50px);
    }
    .page-slot-games__hero-description {
        font-size: 18px;
    }
    .page-slot-games__section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .page-slot-games {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-slot-games__container {
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-slot-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }
    .page-slot-games__hero-content {
        margin-top: 20px;
    }
    .page-slot-games__main-title {
        font-size: clamp(28px, 8vw, 40px);
    }
    .page-slot-games__hero-description {
        font-size: 16px;
    }
    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }
    .page-slot-games__section-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 30px;
    }
    .page-slot-games__text-block {
        font-size: 16px;
        text-align: left;
    }
    .page-slot-games__image,
    .page-slot-games__card-image,
    .page-slot-games__feature-icon {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .page-slot-games__image-container,
    .page-slot-games__card,
    .page-slot-games__feature-item,
    .page-slot-games__step-card,
    .page-slot-games__list-item,
    .page-slot-games__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 10px;
        padding-right: 10px;
        overflow: hidden !important;
    }
    .page-slot-games__card-image {
        height: 180px; /* Adjust height for mobile */
    }
    .page-slot-games__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-slot-games__step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .page-slot-games__faq-question {
        font-size: 16px;
        padding: 15px;
    }
    .page-slot-games__faq-answer {
        padding: 0 15px 15px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .page-slot-games__main-title {
        font-size: clamp(24px, 9vw, 32px);
    }
    .page-slot-games__hero-description {
        font-size: 15px;
    }
    .page-slot-games__section-title {
        font-size: clamp(20px, 7vw, 28px);
    }
    .page-slot-games__card-title {
        font-size: 20px;
    }
    .page-slot-games__step-title {
        font-size: 20px;
    }
}