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

.page-promotions {
    background-color: var(--cwin555-background);
    color: var(--cwin555-text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 60px;
}

.page-promotions__section {
    padding: 40px 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

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

.page-promotions__section-title {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--cwin555-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-promotions__section-title--light {
    color: var(--cwin555-text-main);
}

.page-promotions__description {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: var(--cwin555-text-secondary);
}

.page-promotions__description--light {
    color: var(--cwin555-text-main);
}

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0;
    background-color: var(--cwin555-background);
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 30px;
    border-radius: 10px;
    max-width: 1200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-promotions__main-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--cwin555-gold);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-promotions__hero-description {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--cwin555-text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background: var(--cwin555-button-gradient);
    color: var(--cwin555-text-main);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
    border: none;
    cursor: pointer;
    text-align: center;
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
    filter: brightness(1.1);
}

.page-promotions__cta-button--small {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 30px;
}

.page-promotions__cta-button--large {
    padding: 20px 40px;
    font-size: 22px;
    border-radius: 60px;
}

.page-promotions__cta-button--center {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 300px;
}

.page-promotions__why-choose {
    background-color: var(--cwin555-card-bg);
    padding: 80px 20px;
}

.page-promotions__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-promotions__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-promotions__text-block {
    flex: 1;
    min-width: 300px;
    color: var(--cwin555-text-secondary);
    font-size: 17px;
}

.page-promotions__text-block p {
    margin-bottom: 20px;
}

.page-promotions__image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__offer-types {
    background-color: var(--cwin555-background);
    padding: 80px 20px;
}

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

.page-promotions__card {
    background-color: var(--cwin555-card-bg);
    border: 1px solid var(--cwin555-border);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(87, 227, 141, 0.2);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
}

.page-promotions__card-title {
    font-size: 24px;
    color: var(--cwin555-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-promotions__terms-conditions {
    background-color: var(--cwin555-deep-green);
    padding: 80px 20px;
}

.page-promotions__how-to-join {
    background-color: var(--cwin555-background);
    padding: 80px 20px;
}

.page-promotions__step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.page-promotions__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: var(--cwin555-card-bg);
    border: 1px solid var(--cwin555-border);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}