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

.page-promotions-birthday-bonus {
    background-color: var(--color-background); /* Dark background */
    color: var(--color-text-main); /* Light text for contrast */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure space above footer */
}

/* Hero Section */
.page-promotions-birthday-bonus__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    overflow: hidden;
    box-sizing: border-box;
}

.page-promotions-birthday-bonus__hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    margin-bottom: 30px; /* Space between image and content */
    border-radius: 8px;
}

.page-promotions-birthday-bonus__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-promotions-birthday-bonus__main-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-promotions-birthday-bonus__description {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* General Section Styling */
.page-promotions-birthday-bonus__section {
    padding: 60px 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background-color: var(--color-background);
}

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

.page-promotions-birthday-bonus__section-title {
    font-size: 2.2rem;
    color: var(--color-text-main);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
}

.page-promotions-birthday-bonus__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions-birthday-bonus__text-block {
    font-size: 1rem;
    color: var(--color-text-main);
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-birthday-bonus__text-block strong {
    color: var(--color-gold);
}

.page-promotions-birthday-bonus__text-block a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.page-promotions-birthday-bonus__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Lists */
.page-promotions-birthday-bonus__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.page-promotions-birthday-bonus__numbered-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    counter-reset: step-counter;
}