:root {
    --primary-color: #C61F1F;
    --secondary-color: #E53030;
    --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    --color-card-bg: #2A1212;
    --color-background: #140C0C;
    --color-text-main: #FFF1E8;
    --color-border: #6A1E1E;
    --color-gold: #F3C54D;
    --color-deep-red: #7E0D0D;
    --color-light-text: #f0f0f0;
    --color-dark-text: #333333;
}

body {
    background-color: var(--color-background);
    color: var(--color-text-main);
}

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

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

.page-slot-games__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.page-slot-games__sub-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-gold);
    margin-top: 30px;
    margin-bottom: 20px;
}

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

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

.page-slot-games__card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--color-text-main);
    text-decoration: none;
    display: block;
}

.page-slot-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__card-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-gold);
    margin-top: 0;
    margin-bottom: 15px;
}

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

.page-slot-games__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-slot-games__cta-button:hover {
    background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.page-slot-games__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-slot-games__btn-secondary {
    background: var(--color-deep-red);
    color: #ffffff;
    border: 2px solid var(--color-gold);
    margin-left: 20px;
}

.page-slot-games__btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-deep-red);
    border-color: var(--color-deep-red);
}

.page-slot-games__btn-tertiary {
    display: inline-block;
    padding: 10px 25px;
    background: var(--color-gold);
    color: var(--color-deep-red);
    text-decoration: none;
    border-radius: 20px;
    font-size: 15px;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-slot-games__btn-tertiary:hover {
    background: #FFD700;
    color: var(--color-deep-red);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

.page-slot-games__light-bg {
    background-color: #1a0e0e;
    color: var(--color-text-main);
}

.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;
    background-color: var(--color-background);
}

.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;
}

.page-slot-games__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-slot-games__main-title {
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 900;
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-slot-games__hero-description {
    font-size: 19px;
    color: var(--color-text-main);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.page-slot-games__hero-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

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

.page-slot-games__quick-links-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-slot-games__link-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 30px;
}

.page-slot-games__core-games-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-slot-games__game-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games__game-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--color-gold);
}

.page-slot-games__game-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 10px;
}

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

.page-slot-games__promotions-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-slot-games__promo-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.page-slot-games__promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--color-gold);
}

.page-slot-games__card-content {
    padding: 0 0px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games__security-support-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-slot-games__feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.page-slot-games__feature-item img {
    width: 100%;
    
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--color-gold);
}

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

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

details.page-slot-games__faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    background: var(--color-card-bg);
    color: var(--color-text-main);
    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;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-gold);
}

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: rgba(var(--primary-color), 0.1);
}

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

.page-slot-games__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-gold);
    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: rgba(var(--color-background), 0.5);
    border-radius: 0 0 12px 12px;
    color: var(--color-text-main);
    font-size: 16px;
}

.page-slot-games__blog-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-slot-games__blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.page-slot-games__blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid var(--color-gold);
}

.page-slot-games__blog-content {
    padding: 0 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games__blog-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-gold);
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-slot-games__blog-summary {
    font-size: 15px;
    color: var(--color-text-main);
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-slot-games__blog-date {
    font-size: 14px;
    color: #aaaaaa;
    text-align: right;
    display: block;
}

@media (max-width: 1024px) {
    .page-slot-games__container {
        padding: 30px 15px;
    }
    .page-slot-games__section-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .page-slot-games__sub-title {
        font-size: 24px;
    }
    .page-slot-games__hero-image img {
        border-radius: 8px;
    }
    .page-slot-games__hero-cta-buttons {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .page-slot-games {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-slot-games__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games__hero-image {
        margin-bottom: 20px;
    }
    .page-slot-games__hero-image img {
        border-radius: 6px;
    }
    .page-slot-games__main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .page-slot-games__hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page-slot-games__hero-cta-buttons {
        flex-direction: column;
        gap: 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;
        margin-left: 0 !important;
    }
    .page-slot-games__btn-secondary {
        margin-top: 10px;
    }
    .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;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-slot-games__section-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .page-slot-games__sub-title {
        font-size: 20px;
    }
    .page-slot-games__text-block {
        font-size: 16px;
    }
    .page-slot-games__link-cards,
    .page-slot-games__game-grid,
    .page-slot-games__promo-grid,
    .page-slot-games__feature-grid,
    .page-slot-games__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-slot-games__game-card img,
    .page-slot-games__promo-card img,
    .page-slot-games__feature-item img,
    .page-slot-games__blog-card img {
        
        border-radius: 6px;
    }
    details.page-slot-games__faq-item summary.page-slot-games__faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    .page-slot-games__faq-qtext {
        font-size: 16px;
    }
    .page-slot-games__faq-toggle {
        font-size: 24px;
        width: 24px;
    }
    details.page-slot-games__faq-item .page-slot-games__faq-answer {
        padding: 0 20px 20px;
        font-size: 15px;
    }
    .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 {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games__blog-content {
        padding: 0;
    }
    .page-slot-games__blog-title {
        font-size: 18px;
    }
    .page-slot-games__blog-summary {
        font-size: 14px;
    }
}