.page-slot-games {
    background-color: #0D0E12; /* Background */
    color: #FFF3E6; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 20px; /* Add some padding at the bottom */
}

/* Ensure main content is not hidden by header and is full width, but centered */
.page-content.page-slot-games {
    padding-top: 10px; /* Small top margin, body handles the main offset */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.page-slot-games__hero-section {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
    background-color: #17191F; /* Card BG */
    border-bottom: 2px solid #A84F0C; /* Border */
}

.page-slot-games__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-slot-games__main-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem); /* Increased max for desktop */
    font-weight: bold;
    color: #FF8C1A; /* Main color */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-slot-games__description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #FFF3E6; /* Text Main */
}

.page-slot-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6; /* Text Main */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__cta-button--bottom {
    margin-top: 40px;
}

.page-slot-games__section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #FF8C1A; /* Main color */
    text-align: center;
    margin: 60px auto 40px auto;
    max-width: 1000px;
    position: relative;
    padding-bottom: 10px;
}

.page-slot-games__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #A84F0C; /* Border */
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.page-slot-games__features-section,
.page-slot-games__categories-section,
.page-slot-games__guide-section,
.page-slot-games__tips-section,
.page-slot-games__faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}

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

.page-slot-games__feature-card {
    background-color: #17191F; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #A84F0C; /* Border */
    transition: transform 0.2s ease;
}

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

.page-slot-games__feature-image {
    width: 100%;
    height: auto;
    max-height: 250px; /* Constrain height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #A84F0C; /* Border */
}

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

.page-slot-games__feature-text {
    font-size: 1rem;
    color: #FFF3E6; /* Text Main */
}

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

.page-slot-games__category-item {
    background-color: #17191F; /* Card BG */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid #A84F0C; /* Border */
}

.page-slot-games__category-title {
    font-size: 1.3rem;
    color: #FFB04D; /* Glow */
    margin-bottom: 10px;
}

.page-slot-games__category-description {
    font-size: 0.95rem;
    color: #FFF3E6; /* Text Main */
}

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

.page-slot-games__guide-step {
    background-color: #17191F; /* Card BG */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid #A84F0C; /* Border */
}

.page-slot-games__step-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6; /* Text Main */
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-slot-games__step-title {
    font-size: 1.2rem;
    color: #FFB04D; /* Glow */
    margin-bottom: 10px;
}

.page-slot-games__step-description {
    font-size: 0.95rem;
    color: #FFF3E6; /* Text Main */
}

.page-slot-games__guide-image-wrapper {
    margin-top: 40px;
    text-align: center;
}

.page-slot-games__guide-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid #A84F0C; /* Border */
}

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

.page-slot-games__tip-item {
    background-color: #17191F; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid #A84F0C; /* Border */
}

.page-slot-games__tip-title {
    font-size: 1.3rem;
    color: #FFA53A; /* Auxiliary color */
    margin-bottom: 10px;
}

.page-slot-games__tip-description {
    font-size: 0.95rem;
    color: #FFF3E6; /* Text Main */
}

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

.page-slot-games__faq-item {
    background-color: #17191F; /* Card BG */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    border: 1px solid #A84F0C; /* Border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-slot-games__faq-question {
    font-size: 1.15rem;
    color: #FFB04D; /* Glow */
    margin-bottom: 10px;
    cursor: pointer; /* Indicate it's clickable for potential JS expand/collapse */
}

.page-slot-games__faq-answer {
    font-size: 0.95rem;
    color: #FFF3E6; /* Text Main */
    /* Could be hidden by default and expanded by JS */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding: 40px 15px;
    }

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

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

    .page-slot-games__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-slot-games__section-title {
        font-size: clamp(1.3rem, 6vw, 2rem);
        margin: 40px auto 30px auto;
    }

    .page-slot-games__feature-grid,
    .page-slot-games__category-list,
    .page-slot-games__guide-steps,
    .page-slot-games__tips-list {
        grid-template-columns: 1fr; /* Single column layout for smaller screens */
        gap: 20px;
    }

    .page-slot-games__features-section,
    .page-slot-games__categories-section,
    .page-slot-games__guide-section,
    .page-slot-games__tips-section,
    .page-slot-games__faq-section {
        padding: 0 15px 30px 15px;
    }

    .page-slot-games__feature-image,
    .page-slot-games__guide-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 549px) {
    .page-slot-games__main-title {
        font-size: clamp(1.4rem, 8vw, 2.2rem);
    }
    .page-slot-games__section-title {
        font-size: clamp(1.2rem, 7vw, 1.8rem);
    }
    .page-slot-games__faq-question,
    .page-slot-games__tip-title,
    .page-slot-games__step-title,
    .page-slot-games__category-title,
    .page-slot-games__feature-title {
        font-size: 1.1rem;
    }
    .page-slot-games__description,
    .page-slot-games__feature-text,
    .page-slot-games__category-description,
    .page-slot-games__step-description,
    .page-slot-games__tip-description,
    .page-slot-games__faq-answer {
        font-size: 0.9rem;
    }
}