:root {
    --page-blog-latest-promotions-primary: #FF8C1A;
    --page-blog-latest-promotions-secondary: #FFA53A;
    --page-blog-latest-promotions-card-bg: #17191F;
    --page-blog-latest-promotions-background: #0D0E12;
    --page-blog-latest-promotions-text-main: #FFF3E6;
    --page-blog-latest-promotions-border: #A84F0C;
    --page-blog-latest-promotions-glow: #FFB04D;
    --page-blog-latest-promotions-deep-orange: #D96800;
}

.page-blog-latest-promotions {
    font-family: Arial, sans-serif;
    color: var(--page-blog-latest-promotions-text-main);
    background-color: var(--page-blog-latest-promotions-background);
}

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

.page-blog-latest-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-latest-promotions__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-top: 40px;
    padding: 0 20px;
}

.page-blog-latest-promotions__hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--page-blog-latest-promotions-secondary);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 165, 58, 0.5);
}

.page-blog-latest-promotions__hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--page-blog-latest-promotions-text-main);
}

.page-blog-latest-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    background: linear-gradient(180deg, var(--page-blog-latest-promotions-secondary) 0%, var(--page-blog-latest-promotions-deep-orange) 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-blog-latest-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-blog-latest-promotions__cta-button--secondary {
    background: var(--page-blog-latest-promotions-card-bg);
    border: 2px solid var(--page-blog-latest-promotions-primary);
    color: var(--page-blog-latest-promotions-primary);
    margin-top: 20px;
}

.page-blog-latest-promotions__cta-button--secondary:hover {
    background: var(--page-blog-latest-promotions-primary);
    color: #ffffff;
}

.page-blog-latest-promotions__section {
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.page-blog-latest-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-latest-promotions__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--page-blog-latest-promotions-primary);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-latest-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-blog-latest-promotions-secondary);
    border-radius: 2px;
}

.page-blog-latest-promotions__text-block {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--page-blog-latest-promotions-text-main);
    text-align: left;
}

.page-blog-latest-promotions__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

.page-blog-latest-promotions__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-blog-latest-promotions__card {
    background-color: var(--page-blog-latest-promotions-card-bg);
    border: 1px solid var(--page-blog-latest-promotions-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-latest-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-latest-promotions__card-title {
    font-size: 1.5rem;
    color: var(--page-blog-latest-promotions-secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-latest-promotions__card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--page-blog-latest-promotions-text-main);
}

.page-blog-latest-promotions__steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-blog-latest-promotions__step-item {
    background-color: var(--page-blog-latest-promotions-card-bg);
    border: 1px solid var(--page-blog-latest-promotions-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions__step-title {
    font-size: 1.4rem;
    color: var(--page-blog-latest-promotions-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-latest-promotions__step-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--page-blog-latest-promotions-text-main);
}

.page-blog-latest-promotions__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-blog-latest-promotions__game-card {
    background-color: var(--page-blog-latest-promotions-card-bg);
    border: 1px solid var(--page-blog-latest-promotions-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-latest-promotions__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-latest-promotions__game-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-latest-promotions__game-title a {
    color: var(--page-blog-latest-promotions-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-latest-promotions__game-title a:hover {
    color: var(--page-blog-latest-promotions-primary);
}

.page-blog-latest-promotions__game-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--page-blog-latest-promotions-text-main);
}

.page-blog-latest-promotions__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-blog-latest-promotions__faq-item {
    background-color: var(--page-blog-latest-promotions-card-bg);
    border: 1px solid var(--page-blog-latest-promotions-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--page-blog-latest-promotions-text-main);
    background-color: var(--page-blog-latest-promotions-card-bg);
    position: relative;
    list-style: none;
}

.page-blog-latest-promotions__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-latest-promotions__faq-item[open] .page-blog-latest-promotions__faq-question {
    color: var(--page-blog-latest-promotions-primary);
}

.page-blog-latest-promotions__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--page-blog-latest-promotions-primary);
}

.page-blog-latest-promotions__faq-item[open] .page-blog-latest-promotions__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-latest-promotions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--page-blog-latest-promotions-text-main);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-blog-latest-promotions {
        font-size: 16px;
        line-height: 1.6;
    }

    /* HERO Section */
    .page-blog-latest-promotions__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    .page-blog-latest-promotions__hero-image {
        max-height: 300px !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-blog-latest-promotions__hero-content {
        margin-top: 20px;
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-latest-promotions__hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .page-blog-latest-promotions__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* Buttons and Button Containers */
    .page-blog-latest-promotions__cta-button,
    .page-blog-latest-promotions__btn-primary,
    .page-blog-latest-promotions__btn-secondary,
    .page-blog-latest-promotions a[class*="button"],
    .page-blog-latest-promotions 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: 12px 15px;
        font-size: 1rem;
    }

    .page-blog-latest-promotions__cta-button--secondary {
        margin-top: 15px;
    }

    .page-blog-latest-promotions__cta-buttons,
    .page-blog-latest-promotions__button-group,
    .page-blog-latest-promotions__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-blog-latest-promotions__cta-buttons {
        display: flex;
        flex-direction: column;
    }

    /* General Sections and Containers */
    .page-blog-latest-promotions__section {
        padding: 40px 0;
    }

    .page-blog-latest-promotions__container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-latest-promotions__section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .page-blog-latest-promotions__text-block {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    /* Images */
    .page-blog-latest-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    /* Card Grids */
    .page-blog-latest-promotions__card-grid,
    .page-blog-latest-promotions__steps-list,
    .page-blog-latest-promotions__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .page-blog-latest-promotions__card,
    .page-blog-latest-promotions__step-item,
    .page-blog-latest-promotions__game-card {
        padding: 20px;
    }

    .page-blog-latest-promotions__card-title,
    .page-blog-latest-promotions__step-title,
    .page-blog-latest-promotions__game-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .page-blog-latest-promotions__card-text,
    .page-blog-latest-promotions__step-text,
    .page-blog-latest-promotions__game-description {
        font-size: 0.9rem;
    }

    /* FAQ Section */
    .page-blog-latest-promotions__faq-list {
        margin-top: 20px;
    }

    .page-blog-latest-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .page-blog-latest-promotions__faq-toggle {
        font-size: 1.5rem;
    }

    .page-blog-latest-promotions__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }
}