:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --bg-color: #0A0A0A;
    --card-bg-color: #111111;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --btn-text-color: #ffffff;
    --btn-secondary-text-color: var(--primary-color);
    --btn-secondary-border-color: var(--primary-color);
}

.page-slot-games {
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main-color);
    line-height: 1.6;
}

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

.page-slot-games__container--center {
    text-align: center;
}

.page-slot-games__section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    letter-spacing: 1px;
}

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

.page-slot-games__text-block--tip {
    font-style: italic;
    text-align: center;
}

.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__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-slot-games__cta-buttons--center {
    justify-content: center;
}

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

.page-slot-games__btn-primary {
    background: var(--btn-gradient);
    color: var(--btn-text-color);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-slot-games__btn-primary:hover {
    background: linear-gradient(180deg, #F2C14E 0%, #DDA11D 100%);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
    transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
    background-color: transparent;
    color: var(--btn-secondary-text-color);
    border: 2px solid var(--btn-secondary-border-color);
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-slot-games__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--btn-text-color);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
    transform: translateY(-2px);
}

.page-slot-games__btn-tertiary {
    background-color: var(--border-color);
    color: var(--text-main-color);
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 5px;
}

.page-slot-games__btn-tertiary:hover {
    background-color: #4a3a22;
    transform: translateY(-1px);
}

.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 60px;
    overflow: hidden;
    text-align: center;
}

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

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

.page-slot-games__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(17, 17, 17, 0.8);
    border-radius: 10px;
    margin-top: -100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.page-slot-games__main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.page-slot-games__hero-description {
    font-size: 1.3rem;
    color: var(--text-main-color);
    margin-bottom: 30px;
}

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

.page-slot-games__image-content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.page-slot-games__content-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    min-width: 200px;
    min-height: 200px;
}

.page-slot-games__benefits-section {
    padding: 60px 0;
    background-color: var(--card-bg-color);
}

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

.page-slot-games__card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    color: var(--text-main-color);
}

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

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

.page-slot-games__card-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-slot-games__card-description {
    font-size: 1rem;
    color: var(--text-main-color);
}

.page-slot-games__video-section {
    padding: 60px 0;
    padding-top: 10px;
}

.page-slot-games__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.page-slot-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.page-slot-games__game-types-section {
    padding: 60px 0;
    background-color: var(--card-bg-color);
}

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

.page-slot-games__game-type-card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    color: var(--text-main-color);
}

.page-slot-games__game-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-slot-games__game-type-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-slot-games__game-type-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-slot-games__game-type-description {
    font-size: 0.95rem;
    color: var(--text-main-color);
}

.page-slot-games__how-to-play-section {
    padding: 60px 0;
}

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

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

.page-slot-games__step-number {
    background: var(--btn-gradient);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(255, 211, 107, 0.5);
}

.page-slot-games__step-title {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-slot-games__step-description {
    font-size: 1rem;
    color: var(--text-main-color);
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-slot-games__promotions-section {
    padding: 60px 0;
    background-color: var(--card-bg-color);
}

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

.page-slot-games__promo-list li {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: var(--text-main-color);
}

.page-slot-games__promo-list li img {
    
    
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
    min-width: 200px;
    min-height: 200px;
    width: 200px;
    height: 200px;
}

.page-slot-games__promo-list li strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

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

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

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

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    background-color: #1a1a1a;
    border-bottom: 1px solid var(--border-color);
}

.page-slot-games__faq-item[open] .page-slot-games__faq-question {
    border-bottom: none;
}

.page-slot-games__faq-qtext {
    flex-grow: 1;
}

.page-slot-games__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
    transform: rotate(45deg);
}

.page-slot-games__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: var(--text-main-color);
    background-color: #111111;
}

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

.page-slot-games__final-cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-slot-games__final-cta-section .page-slot-games__section-title {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
}

.page-slot-games__final-cta-section .page-slot-games__text-block {
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
}

.page-slot-games__final-cta-section .page-slot-games__cta-buttons a {
    color: #ffffff;
    border-color: #ffffff;
}

.page-slot-games__final-cta-section .page-slot-games__btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
}

.page-slot-games__final-cta-section .page-slot-games__btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .page-slot-games__hero-content {
        margin-top: -80px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .page-slot-games__container,
    .page-slot-games__hero-section,
    .page-slot-games__introduction-section,
    .page-slot-games__benefits-section,
    .page-slot-games__video-section,
    .page-slot-games__game-types-section,
    .page-slot-games__how-to-play-section,
    .page-slot-games__promotions-section,
    .page-slot-games__faq-section,
    .page-slot-games__final-cta-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-slot-games__section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .page-slot-games__main-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .page-slot-games__hero-description {
        font-size: 1.1rem;
    }

    .page-slot-games__hero-content {
        margin-top: -60px;
        padding: 25px 15px;
    }

    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary,
    .page-slot-games__btn-tertiary,
    .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;
    }

    .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: 0;
        padding-right: 0;
        flex-wrap: wrap !important;
        gap: 15px;
    }

    .page-slot-games__image-content-block {
        flex-direction: column;
    }

    .page-slot-games__content-image {
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .page-slot-games__card-image,
    .page-slot-games__game-type-image,
    .page-slot-games__promo-list li img {
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
    }

    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-slot-games__video-section {
        padding-top: 10px !important;
    }

    .page-slot-games video,
    .page-slot-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-slot-games__video-section,
    .page-slot-games__video-container,
    .page-slot-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden !important;
    }

    .page-slot-games__promo-list li {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .page-slot-games__promo-list li img {
        margin-bottom: 15px;
    }

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

    .page-slot-games__faq-toggle {
        font-size: 1.5rem;
    }

    .page-slot-games__faq-answer {
        padding: 10px 20px 15px;
    }

    .page-slot-games__content-area img {
        min-width: 200px;
        min-height: 200px;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-slot-games__hero-content {
        margin-top: -40px;
        padding: 20px 10px;
    }

    .page-slot-games__main-title {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
    }

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

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

    .page-slot-games__text-block,
    .page-slot-games__card-description,
    .page-slot-games__game-type-description,
    .page-slot-games__step-description {
        font-size: 0.9rem;
    }

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary,
    .page-slot-games__btn-tertiary {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

.page-slot-games p, .page-slot-games li, .page-slot-games__card-description, .page-slot-games__game-type-description, .page-slot-games__step-description, .page-slot-games__faq-answer p {
    color: var(--text-main-color);
}

.page-slot-games__card, .page-slot-games__game-type-card, .page-slot-games__step-card, .page-slot-games__promo-list li, .page-slot-games__faq-item {
    background-color: var(--card-bg-color);
    color: var(--text-main-color);
}

.page-slot-games__faq-question {
    background-color: #1a1a1a;
    color: var(--primary-color);
}

.page-slot-games__final-cta-section {
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-slot-games__final-cta-section .page-slot-games__btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
}

.page-slot-games__final-cta-section .page-slot-games__btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}