:root {
    --mebet-primary: #11A84E;
    --mebet-secondary: #22C768;
    --mebet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --mebet-card-bg: #11271B;
    --mebet-background: #08160F;
    --mebet-text-main: #F2FFF6;
    --mebet-text-secondary: #A7D9B8;
    --mebet-border: #2E7A4E;
    --mebet-glow: #57E38D;
    --mebet-gold: #F2C14E;
    --mebet-divider: #1E3A2A;
    --mebet-deep-green: #0A4B2C;
}

.page-promotions {
    font-family: Arial, sans-serif;
    color: var(--mebet-text-main);
    background-color: var(--mebet-background);
    line-height: 1.6;
    font-size: 1rem;
}

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

.page-promotions__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--mebet-text-main);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-promotions__section-title--gold {
    color: var(--mebet-gold);
}

.page-promotions__text-block {
    font-size: 1.1rem;
    color: var(--mebet-text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 60px;
    background-color: var(--mebet-deep-green);
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin-top: -100px;
    background-color: rgba(17, 47, 27, 0.8);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__main-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--mebet-gold);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-promotions__description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--mebet-text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__card-button,
.page-promotions__faq-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-promotions__btn-primary {
    background: var(--mebet-button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--mebet-text-main);
    border: 2px solid var(--mebet-glow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: rgba(var(--mebet-glow), 0.1);
}

.page-promotions__intro-section {
    padding: 80px 0;
    text-align: center;
}

.page-promotions__dark-section {
    background-color: var(--mebet-deep-green);
    color: var(--mebet-text-main);
}

.page-promotions__image-content {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__types-section {
    padding: 80px 0;
    background-color: var(--mebet-background);
}

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

.page-promotions__promo-card {
    background-color: var(--mebet-card-bg);
    border: 1px solid var(--mebet-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    color: var(--mebet-text-main);
}

.page-promotions__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__card-title {
    font-size: 1.5rem;
    color: var(--mebet-gold);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.page-promotions__card-text {
    font-size: 1rem;
    color: var(--mebet-text-secondary);
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__card-button {
    background: var(--mebet-button-gradient);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: center;
    max-width: 100%;
    box-sizing: border-box;
}

.page-promotions__card-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-promotions__how-to-claim-section {
    padding: 80px 0;
    text-align: center;
}

.page-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions__step-card {
    background-color: var(--mebet-card-bg);
    border: 1px solid var(--mebet-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: var(--mebet-text-main);
    text-align: left;
}

.page-promotions__step-title {
    font-size: 1.4rem;
    color: var(--mebet-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__step-text {
    font-size: 1rem;
    color: var(--mebet-text-secondary);
}

.page-promotions__step-text a {
    color: var(--mebet-glow);
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__step-text a:hover {
    text-decoration: underline;
}

.page-promotions__terms-section {
    padding: 80px 0;
    background-color: var(--mebet-background);
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    text-align: left;
}

.page-promotions__terms-item {
    background-color: var(--mebet-card-bg);
    border: 1px solid var(--mebet-border);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--mebet-text-secondary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 40px;
}

.page-promotions__terms-item::before {
    content: "•";
    color: var(--mebet-glow);
    font-size: 1.5em;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
}

.page-promotions__terms-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--mebet-glow);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--mebet-glow);
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-promotions__terms-link:hover {
    color: var(--mebet-gold);
    border-color: var(--mebet-gold);
}

.page-promotions__faq-section {
    padding: 80px 0;
    text-align: center;
}

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

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

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--mebet-text-main);
    cursor: pointer;
    background-color: var(--mebet-deep-green);
    transition: background-color 0.3s ease;
    list-style: none;
}

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

.page-promotions__faq-question:hover {
    background-color: rgba(var(--mebet-deep-green), 0.8);
}

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

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

.page-promotions__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: var(--mebet-text-secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions__faq-item[open] .page-promotions__faq-answer {
    max-height: 500px;
    padding-top: 15px;
}

.page-promotions__faq-button {
    margin-top: 40px;
}

.page-promotions__final-cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--mebet-background);
}

.page-promotions__final-cta-section .page-promotions__card {
    background-color: var(--mebet-card-bg);
    border: 1px solid var(--mebet-border);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .page-promotions__hero-content {
        margin-top: -80px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-bottom: 40px;
    }

    .page-promotions__hero-content {
        margin-top: -60px;
        padding: 15px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-promotions__description {
        font-size: clamp(1rem, 4vw, 1.1rem);
        margin-bottom: 20px;
    }

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

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

    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important;
    }
    
    .page-promotions__hero-section {
        padding-top: 10px !important;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions__card-button,
    .page-promotions__faq-button,
    .page-promotions a[class*="button"],
    .page-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-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__cta-buttons,
    .page-promotions__button-group,
    .page-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-promotions__cta-buttons {
        flex-direction: column !important;
    }

    .page-promotions__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-promotions__text-block {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .page-promotions__intro-section,
    .page-promotions__types-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__final-cta-section {
        padding: 50px 0;
    }

    .page-promotions__promo-grid,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions__card-image {
        height: 180px;
    }
    
    .page-promotions__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    
    .page-promotions__faq-answer {
        padding: 0 20px 15px 20px;
    }
    
    .page-promotions__final-cta-section .page-promotions__card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-content {
        margin-top: -40px;
    }
    .page-promotions__card-image {
        height: 150px;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions__card-button,
    .page-promotions__faq-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

.page-promotions img {
    filter: none;
}
.page-promotions__hero-image {
    filter: brightness(0.7);
}