:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg: #17191F;
    --background-color: #0D0E12;
    --text-main-color: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
    --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

body {
    background-color: var(--background-color);
    color: var(--text-main-color);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.page-slots {
    color: var(--text-main-color); /* Ensure text is light on dark body background */
}

.page-slots__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--background-color);
}

.page-slots__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure full width on desktop */
}

.page-slots__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-slots__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(255, 140, 26, 0.5);
}

.page-slots__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.page-slots__hero-content h1 {
    color: var(--primary-color);
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 140, 26, 0.7);
}

.page-slots__hero-description {
    font-size: 1.1em;
    color: var(--text-main-color);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

.page-slots__cta-button:hover {
    background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 26, 0.6);
}

.page-slots__section {
    padding: 60px 20px;
    background-color: var(--background-color);
    border-bottom: 1px solid var(--card-bg);
}

.page-slots__section:last-of-type {
    border-bottom: none;
}

.page-slots__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-slots__section-title {
    color: var(--primary-color);
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(255, 140, 26, 0.3);
}

.page-slots__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-main-color);
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots__features-grid,
.page-slots__game-type-grid,
.page-slots__game-grid,
.page-slots__security-mobile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-slots__feature-item,
.page-slots__game-type-card,
.page-slots__game-card,
.page-slots__security-info,
.page-slots__mobile-info {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots__feature-item:hover,
.page-slots__game-type-card:hover,
.page-slots__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 26, 0.3);
}

.page-slots__feature-item img,
.page-slots__game-type-card img,
.page-slots__game-card img,
.page-slots__security-info img,
.page-slots__mobile-info img {
    width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-slots__feature-item h3,
.page-slots__game-type-card h3,
.page-slots__game-card h3,
.page-slots__security-info h3,
.page-slots__mobile-info h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-slots__feature-item p,
.page-slots__game-type-card p,
.page-slots__game-card p,
.page-slots__security-info p,
.page-slots__mobile-info p {
    color: var(--text-main-color);
    font-size: 1em;
    line-height: 1.7;
}

.page-slots__play-button,
.page-slots__download-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(255, 140, 26, 0.3);
}

.page-slots__play-button:hover,
.page-slots__download-button:hover {
    background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 26, 0.5);
}

.page-slots__step-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-slots__step-list li {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    font-size: 1.1em;
    color: var(--text-main-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    counter-increment: step-counter;
    position: relative;
    padding-left: 60px;
}

.page-slots__step-list li:last-child {
    margin-bottom: 0;
}

.page-slots__step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-slots__promotion-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 900px;
}

.page-slots__promotion-list li {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    font-size: 1.1em;
    color: var(--text-main-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 20px;
}

.page-slots__promotion-list li:last-child {
    margin-bottom: 0;
}

.page-slots__promotion-list li strong {
    color: var(--secondary-color);
}

/* FAQ Section */
details.page-slots__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-slots__faq-item summary.page-slots__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--secondary-color);
    font-weight: bold;
}

details.page-slots__faq-item summary.page-slots__faq-question::-webkit-details-marker {
    display: none;
}

details.page-slots__faq-item summary.page-slots__faq-question:hover {
    background: rgba(var(--primary-color-rgb), 0.1);
}

.page-slots__faq-qtext {
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--secondary-color);
}

.page-slots__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}

details.page-slots__faq-item .page-slots__faq-answer {
    padding: 0 20px 20px;
    background: rgba(var(--card-bg-rgb), 0.5);
    border-radius: 0 0 5px 5px;
    color: var(--text-main-color);
    font-size: 1em;
    line-height: 1.7;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .page-slots__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-slots__hero-image img {
        border-radius: 4px;
    }

    .page-slots__hero-content h1 {
        font-size: 2.2em; /* Adjusted for better mobile fit */
    }

    .page-slots__hero-description {
        font-size: 1em;
    }

    .page-slots__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-slots__section {
        padding: 40px 15px;
    }

    .page-slots__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-slots__text-block {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-slots__features-grid,
    .page-slots__game-type-grid,
    .page-slots__game-grid,
    .page-slots__security-mobile-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-slots__feature-item,
    .page-slots__game-type-card,
    .page-slots__game-card,
    .page-slots__security-info,
    .page-slots__mobile-info {
        padding: 20px;
    }

    .page-slots__feature-item h3,
    .page-slots__game-type-card h3,
    .page-slots__game-card h3,
    .page-slots__security-info h3,
    .page-slots__mobile-info h3 {
        font-size: 1.3em;
    }

    .page-slots__feature-item img,
    .page-slots__game-type-card img,
    .page-slots__game-card img,
    .page-slots__security-info img,
    .page-slots__mobile-info img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: unset;
        min-height: unset;
    }

    .page-slots__play-button,
    .page-slots__download-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-slots__step-list li,
    .page-slots__promotion-list li {
        font-size: 1em;
        padding: 15px 15px 15px 50px;
    }

    .page-slots__step-list li::before {
        left: 15px;
        width: 25px;
        height: 25px;
        font-size: 1em;
    }

    details.page-slots__faq-item summary.page-slots__faq-question {
        padding: 15px;
    }

    .page-slots__faq-qtext {
        font-size: 1em;
    }

    .page-slots__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }

    details.page-slots__faq-item .page-slots__faq-answer {
        padding: 0 15px 15px;
    }

    .page-slots__game-grid {
        gap: 15px;
    }

    .page-slots__game-card {
        padding: 20px;
    }

    .page-slots__game-card img {
        
    }
}

/* Ensure all images are responsive */
.page-slots img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure all image containers are responsive */
.page-slots__hero-image,
.page-slots__feature-item,
.page-slots__game-type-card,
.page-slots__game-card,
.page-slots__security-info,
.page-slots__mobile-info {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Ensure all button containers are responsive */
.page-slots__cta-buttons,
.page-slots__button-group,
.page-slots__btn-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Mobile specific button and container overrides */
@media (max-width: 768px) {
    .page-slots__cta-button,
    .page-slots__play-button,
    .page-slots__download-button,
    .page-slots a[class*="button"],
    .page-slots a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: auto;
        margin-right: auto;
    }

    .page-slots__cta-buttons,
    .page-slots__button-group,
    .page-slots__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-slots__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Contrast fixes for specific elements if needed */
.page-slots__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-slots__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}