:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --background-color: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
}

.page-slot-games {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    color: var(--text-main); /* Default text color for dark background */
    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;
    text-align: center;
}

.page-slot-games__section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-slot-games__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-main);
}

.page-slot-games__text-block a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

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

.page-slot-games__card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: var(--text-main);
    text-align: left;
}

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

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

/* Hero Section */
.page-slot-games__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 */
    overflow: hidden;
}

.page-slot-games__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-slot-games__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

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

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-slot-games__main-title {
    font-size: clamp(32px, 5vw, 54px);
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-slot-games__hero-description {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--secondary-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #000000; /* Ensure high contrast for button text */
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: none;
}

.page-slot-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-color);
}

/* Introduction Section */
.page-slot-games__introduction-section {
    background-color: var(--background-color);
    color: var(--text-main);
}

/* Benefits Section */
.page-slot-games__benefits-section {
    background-color: var(--card-bg);
    color: var(--text-main);
}

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

.page-slot-games__image-wrapper {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slot-games__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Types Section */
.page-slot-games__types-section {
    background-color: var(--background-color);
    color: var(--text-main);
}

.page-slot-games__image-grid {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slot-games__image-grid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.page-slot-games__type-item {
    padding: 25px;
}

.page-slot-games__type-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.page-slot-games__cta-button--small {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 40px;
}

/* Strategy Section */
.page-slot-games__strategy-section {
    background-color: var(--card-bg);
    color: var(--text-main);
}

.page-slot-games__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-slot-games__image-left,
.page-slot-games__text-right {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
}

.page-slot-games__image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slot-games__strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-slot-games__strategy-list li {
    margin-bottom: 15px;
    font-size: 17px;
    position: relative;
    padding-left: 25px;
    color: var(--text-main);
}

.page-slot-games__strategy-list li::before {
    content: '★';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 18px;
    line-height: 1;
}

.page-slot-games__strategy-list li strong {
    color: var(--primary-color);
}

/* Giftcode Section */
.page-slot-games__giftcode-section {
    background-color: var(--background-color);
    color: var(--text-main);
}

.page-slot-games__giftcode-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.page-slot-games__giftcode-text,
.page-slot-games__giftcode-image {
    flex: 1;
    min-width: 300px;
}

.page-slot-games__giftcode-text {
    text-align: left;
}

.page-slot-games__giftcode-text p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-slot-games__giftcode-list,
.page-slot-games__giftcode-steps {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.page-slot-games__giftcode-list li,
.page-slot-games__giftcode-steps li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-main);
}

.page-slot-games__giftcode-steps li strong {
    color: var(--primary-color);
}

.page-slot-games__giftcode-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Registration Guide */
.page-slot-games__registration-guide {
    background-color: var(--card-bg);
    color: var(--text-main);
}

.page-slot-games__guide-steps {
    list-style: decimal;
    padding-left: 20px;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
    color: var(--text-main);
}

.page-slot-games__guide-steps li {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.page-slot-games__guide-steps li strong {
    color: var(--primary-color);
    font-size: 18px;
}

/* FAQ Section */
.page-slot-games__faq-section {
    background-color: var(--background-color);
    color: var(--text-main);
}

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

details.page-slot-games__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    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-slot-games__faq-item summary.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    color: var(--text-main);
    font-weight: bold;
}

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

details.page-slot-games__faq-item summary.page-slot-games__faq-question:hover {
    background: #1a1a1a;
    border-color: var(--primary-color);
}

.page-slot-games__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main);
}

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

details.page-slot-games__faq-item .page-slot-games__faq-answer {
    padding: 0 25px 25px;
    background: #0d0d0d;
    border-radius: 0 0 10px 10px;
    text-align: left;
    color: var(--text-main);
    font-size: 16px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-slot-games__hero-section {
        padding: 40px 15px;
    }
    .page-slot-games__section-title {
        font-size: clamp(26px, 3.5vw, 38px);
    }
    .page-slot-games__text-block {
        font-size: 16px;
    }
    .page-slot-games__features-grid,
    .page-slot-games__types-list {
        gap: 20px;
    }
    .page-slot-games__feature-card,
    .page-slot-games__type-item {
        padding: 25px;
    }
    .page-slot-games__card-title {
        font-size: 22px;
    }
    .page-slot-games__strategy-list li,
    .page-slot-games__guide-steps li,
    .page-slot-games__giftcode-list li,
    .page-slot-games__giftcode-steps li {
        font-size: 16px;
    }
    .page-slot-games__faq-qtext {
        font-size: 17px;
    }
    .page-slot-games__faq-toggle {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games__main-title {
        font-size: clamp(28px, 6vw, 40px);
    }
    .page-slot-games__hero-description {
        font-size: clamp(16px, 3vw, 20px);
    }
    .page-slot-games__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;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games__section {
        padding: 40px 0;
    }
    .page-slot-games__container {
        padding: 0 15px;
    }
    .page-slot-games__section-title {
        font-size: clamp(24px, 5vw, 32px);
        margin-bottom: 30px;
    }
    .page-slot-games__text-block {
        font-size: 15px;
    }
    .page-slot-games__features-grid,
    .page-slot-games__types-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .page-slot-games__feature-card,
    .page-slot-games__type-item {
        padding: 20px;
    }
    .page-slot-games__card-title {
        font-size: 20px;
    }
    .page-slot-games__card-description {
        font-size: 15px;
    }
    .page-slot-games__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .page-slot-games__image-left,
    .page-slot-games__text-right {
        max-width: 100%;
        min-width: unset;
    }
    .page-slot-games__strategy-list li {
        font-size: 15px;
    }
    .page-slot-games__giftcode-content {
        flex-direction: column;
        padding: 30px;
    }
    .page-slot-games__giftcode-text p,
    .page-slot-games__giftcode-list li,
    .page-slot-games__giftcode-steps li {
        font-size: 15px;
    }
    .page-slot-games__guide-steps {
        margin: 30px auto;
    }
    .page-slot-games__guide-steps li {
        font-size: 15px;
    }
    .page-slot-games__guide-steps li strong {
        font-size: 16px;
    }
    details.page-slot-games__faq-item summary.page-slot-games__faq-question {
        padding: 15px 20px;
    }
    .page-slot-games__faq-qtext {
        font-size: 16px;
    }
    .page-slot-games__faq-toggle {
        font-size: 24px;
        width: 25px;
    }
    details.page-slot-games__faq-item .page-slot-games__faq-answer {
        padding: 0 20px 20px;
    }
    .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__cta-buttons,
    .page-slot-games__button-group,
    .page-slot-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games__cta-button,
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary,
    .page-slot-games a[class*="button"],
    .page-slot-games a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}