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

.page-promotions {
    font-family: Arial, sans-serif;
    color: var(--text-main-color);
    background-color: var(--bg-color-main, #0A0A0A);
    line-height: 1.6;
    font-size: 16px;
}

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

.page-promotions__hero-section {
    position: relative;
    padding-top: 10px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--main-bg-color);
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}}