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

.page-blog-okbet-latest-promotions {
    background-color: var(--okbet-background);
    color: var(--okbet-text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

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

.page-blog-okbet-latest-promotions__section {
    padding: 60px 0;
}

.page-blog-okbet-latest-promotions__section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--okbet-primary);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-blog-okbet-latest-promotions__text-block {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-blog-okbet-latest-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;
    background-color: #000;
}

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

.page-blog-okbet-latest-promotions__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
    background-color: var(--okbet-background);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-okbet-latest-promotions__main-title {
    font-size: clamp(32px, 4.5vw, 56px);
    color: var(--okbet-secondary);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-okbet-latest-promotions__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--okbet-text-main);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-blog-okbet-latest-promotions__btn-primary,
.page-blog-okbet-latest-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.page-blog-okbet-latest-promotions__btn-primary {
    background: var(--okbet-button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-okbet-latest-promotions__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-okbet-latest-promotions__btn-secondary {
    background: transparent;
    color: var(--okbet-primary);
    border: 2px solid var(--okbet-primary);
    margin-left: 20px;
}

.page-blog-okbet-latest-promotions__btn-secondary:hover {
    background: var(--okbet-primary);
    color: #ffffff;
}

.page-blog-okbet-latest-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Promotions Grid */
.page-blog-okbet-latest-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-blog-okbet-latest-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-okbet-latest-promotions__promo-image {
    width: 100%;
    height: auto;
    max-height: 225px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-okbet-latest-promotions__card-title {
    font-size: 24px;
    color: var(--okbet-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-okbet-latest-promotions__card-description {
    font-size: 16px;
    margin-bottom: 20px;
}

/* How to Claim Section */
.page-blog-okbet-latest-promotions__how-to-claim {
    background-color: var(--okbet-background);
}

.page-blog-okbet-latest-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-blog-okbet-latest-promotions__step-item {
    background-color: var(--okbet-card-bg);
    border: 1px solid var(--okbet-border);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-okbet-latest-promotions__step-title {
    font-size: 22px;
    color: var(--okbet-secondary);
    margin-bottom: 10px;
}

.page-blog-okbet-latest-promotions__step-description {
    font-size: 16px;
    color: var(--okbet-text-main);
}

.page-blog-okbet-latest-promotions__step-description a {
    color: var(--okbet-primary);
    text-decoration: none;
    font-weight: bold;
}

.page-blog-okbet-latest-promotions__step-description a:hover {
    text-decoration: underline;
}

/* Terms and Conditions */
.page-blog-okbet-latest-promotions__terms-conditions {
    background-color: #0A0A0A;
}

.page-blog-okbet-latest-promotions__list {
    list-style: disc;
    padding-left: 40px;
    margin-top: 20px;
    color: var(--okbet-text-main);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-okbet-latest-promotions__list-item {
    margin-bottom: 10px;
    font-size: 17px;
}

.page-blog-okbet-latest-promotions__list-item strong {
    color: var(--okbet-secondary);
}

.page-blog-okbet-latest-promotions__terms-conditions a {
    color: var(--okbet-primary);
    text-decoration: none;
    font-weight: bold;
}
.page-blog-okbet-latest-promotions__terms-conditions a:hover {
    text-decoration: underline;
}

/* Why OKBET Section */
.page-blog-okbet-latest-promotions__why-okbet {
    background-color: var(--okbet-background);
}

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

.page-blog-okbet-latest-promotions__feature-item {
    background-color: var(--okbet-card-bg);
    border: 1px solid var(--okbet-border);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    color: var(--okbet-text-main);
}

.page-blog-okbet-latest-promotions__feature-title {
    font-size: 20px;
    color: var(--okbet-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-okbet-latest-promotions__feature-description {
    font-size: 16px;
}

.page-blog-okbet-latest-promotions__feature-description a {
    color: var(--okbet-secondary);
    text-decoration: none;
    font-weight: bold;
}

.page-blog-okbet-latest-promotions__feature-description a:hover {
    text-decoration: underline;
}


/* FAQ Section */
.page-blog-okbet-latest-promotions__faq-section {
    background-color: #0A0A0A;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-okbet-latest-promotions__faq-list {
    max-width: 900px;
    width: 100%;
    margin-top: 40px;
}

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

.page-blog-okbet-latest-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #1a1a1a;
    color: var(--okbet-primary);
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-blog-okbet-latest-promotions__faq-question:hover {
    background-color: #2a2a2a;
}

.page-blog-okbet-latest-promotions__faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: inherit;
}

.page-blog-okbet-latest-promotions__faq-toggle {
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-okbet-latest-promotions__faq-item.active .page-blog-okbet-latest-promotions__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-okbet-latest-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--okbet-text-main);
    font-size: 16px;
}

.page-blog-okbet-latest-promotions__faq-item.active .page-blog-okbet-latest-promotions__faq-answer {
    max-height: 1000px !important;
    padding: 15px 25px 25px;
}

.page-blog-okbet-latest-promotions__faq-answer p {
    margin: 0;
    padding: 0;
}

.page-blog-okbet-latest-promotions__faq-answer a {
    color: var(--okbet-secondary);
    text-decoration: none;
    font-weight: bold;
}
.page-blog-okbet-latest-promotions__faq-answer a:hover {
    text-decoration: underline;
}

.page-blog-okbet-latest-promotions__faq-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Related Content */
.page-blog-okbet-latest-promotions__related-content {
    background-color: var(--okbet-background);
}

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

.page-blog-okbet-latest-promotions__related-card {
    display: block;
    background-color: var(--okbet-card-bg);
    border: 1px solid var(--okbet-border);
    border-radius: 10px;
    padding: 25px;
    text-decoration: none;
    color: var(--okbet-text-main);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-okbet-latest-promotions__related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-okbet-latest-promotions__related-card .page-blog-okbet-latest-promotions__card-title {
    font-size: 20px;
    color: var(--okbet-primary);
    margin-bottom: 10px;
}

.page-blog-okbet-latest-promotions__related-card .page-blog-okbet-latest-promotions__card-description {
    font-size: 16px;
    color: var(--okbet-text-main);
}

/* Final CTA */
.page-blog-okbet-latest-promotions__cta-final {
    background-color: #1a1a1a;
    text-align: center;
    padding: 80px 0;
}

.page-blog-okbet-latest-promotions__cta-final-content {
    max-width: 800px;
}

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

    .page-blog-okbet-latest-promotions__hero-content {
        margin-top: -40px;
        padding: 30px 15px;
    }

    .page-blog-okbet-latest-promotions__main-title {
        font-size: clamp(28px, 8vw, 40px);
    }

    .page-blog-okbet-latest-promotions__hero-description {
        font-size: 18px;
    }

    .page-blog-okbet-latest-promotions__section {
        padding: 40px 0;
    }

    .page-blog-okbet-latest-promotions__section-title {
        font-size: clamp(24px, 7vw, 36px);
        margin-bottom: 30px;
    }

    .page-blog-okbet-latest-promotions__text-block {
        font-size: 16px;
    }

    .page-blog-okbet-latest-promotions__promo-grid,
    .page-blog-okbet-latest-promotions__features-grid,
    .page-blog-okbet-latest-promotions__related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-okbet-latest-promotions__promo-card,
    .page-blog-okbet-latest-promotions__step-item,
    .page-blog-okbet-latest-promotions__feature-item,
    .page-blog-okbet-latest-promotions__faq-item,
    .page-blog-okbet-latest-promotions__related-card {
        padding: 20px;
    }

    .page-blog-okbet-latest-promotions__promo-image {
        max-height: 180px;
    }

    .page-blog-okbet-latest-promotions__card-title {
        font-size: 20px;
    }

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

    .page-blog-okbet-latest-promotions__faq-question h3 {
        font-size: 16px;
    }

    .page-blog-okbet-latest-promotions__faq-answer {
        padding: 0 20px;
    }
    
    .page-blog-okbet-latest-promotions__faq-item.active .page-blog-okbet-latest-promotions__faq-answer {
        padding: 15px 20px 20px;
    }

    .page-blog-okbet-latest-promotions__faq-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin-left: 0;
        margin-right: 0;
    }

    .page-blog-okbet-latest-promotions__btn-primary,
    .page-blog-okbet-latest-promotions__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0;
        margin-bottom: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-blog-okbet-latest-promotions__btn-secondary {
        margin-top: 0;
    }

    .page-blog-okbet-latest-promotions__cta-buttons {
        flex-direction: column;
        gap: 0;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Images responsive */
    .page-blog-okbet-latest-promotions img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-okbet-latest-promotions__section,
    .page-blog-okbet-latest-promotions__card,
    .page-blog-okbet-latest-promotions__container,
    .page-blog-okbet-latest-promotions__cta-final-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-okbet-latest-promotions__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-blog-okbet-latest-promotions__promo-image,
    .page-blog-okbet-latest-promotions__faq-image {
        min-width: 200px;
        min-height: 150px;
    }
}