/* style/promotions-birthday-bonus.css */
.page-promotions-birthday-bonus {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #1A1A2E;
    line-height: 1.6;
}

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

.page-promotions-birthday-bonus__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-birthday-bonus__section:nth-of-type(even) {
    background-color: #282840;
}

.page-promotions-birthday-bonus h1,
.page-promotions-birthday-bonus h2 {
    color: #E94560;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-birthday-bonus h1 {
    font-size: 3em;
    line-height: 1.2;
}

.page-promotions-birthday-bonus h2 {
    font-size: 2.5em;
    margin-top: 40px;
}

.page-promotions-birthday-bonus h3 {
    color: #f0f0f0;
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-promotions-birthday-bonus p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #CCCCCC;
}

.page-promotions-birthday-bonus a {
    color: #E94560;
    text-decoration: none;
}

.page-promotions-birthday-bonus a:hover {
    text-decoration: underline;
}

.page-promotions-birthday-bonus__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
    border: none;
}

.page-promotions-birthday-bonus__button--primary {
    background-color: #E94560;
    color: #FFFFFF;
}

.page-promotions-birthday-bonus__button--primary:hover {
    background-color: #D63450;
    transform: translateY(-2px);
}

.page-promotions-birthday-bonus__button--secondary {
    background-color: transparent;
    color: #E94560;
    border: 2px solid #E94560;
}

.page-promotions-birthday-bonus__button--secondary:hover {
    background-color: #E94560;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.page-promotions-birthday-bonus__cta-group {
    margin-top: 30px;
}

/* Hero Section */
.page-promotions-birthday-bonus__hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
}

.page-promotions-birthday-bonus__hero-content {
    max-width: 600px;
    padding: 20px;
}

.page-promotions-birthday-bonus__hero-content h1 {
    color: #E94560;
    font-size: 3.5em;
    margin-bottom: 20px;
}

.page-promotions-birthday-bonus__hero-content p {
    font-size: 1.2em;
    color: #E0E0E0;
}

.page-promotions-birthday-bonus__hero-image-wrapper {
    flex-shrink: 0;
}

.page-promotions-birthday-bonus__hero-image {
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Benefits Grid */
.page-promotions-birthday-bonus__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-birthday-bonus__benefit-item {
    background-color: #282840;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions-birthday-bonus__benefit-item:hover {
    transform: translateY(-10px);
}

.page-promotions-birthday-bonus__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-promotions-birthday-bonus__benefit-item h3 {
    color: #E94560;
    font-size: 1.5em;
}

.page-promotions-birthday-bonus__benefit-item p {
    font-size: 1em;
    color: #B0B0B0;
}

/* How-To-Claim Steps */
.page-promotions-birthday-bonus__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-promotions-birthday-bonus__step-item {
    background-color: #282840;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-top: 80px; /* Space for step number */
}

.page-promotions-birthday-bonus__step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E94560;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    border: 5px solid #1A1A2E;
}

.page-promotions-birthday-bonus__step-item h3 {
    color: #E94560;
    text-align: center;
}

.page-promotions-birthday-bonus__step-item p {
    font-size: 1em;
    color: #B0B0B0;
    text-align: left;
}

.page-promotions-birthday-bonus__step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Terms and Conditions */
.page-promotions-birthday-bonus__section--terms ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 30px auto;
}

.page-promotions-birthday-bonus__section--terms li {
    background-color: #282840;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #E94560;
    border-radius: 5px;
    color: #CCCCCC;
    font-size: 1em;
}

.page-promotions-birthday-bonus__section--terms li strong {
    color: #E94560;
}

/* FAQ Section */
.page-promotions-birthday-bonus__faq-list {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-promotions-birthday-bonus__faq-item {
    background-color: #282840;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-birthday-bonus__faq-item h3 {
    color: #E94560;
    font-size: 1.3em;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-birthday-bonus__faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-birthday-bonus__faq-item.active h3::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-birthday-bonus__faq-item p {
    color: #B0B0B0;
    font-size: 1em;
    margin-bottom: 0;
    display: none;
    padding-top: 10px;
    border-top: 1px solid rgba(233, 69, 96, 0.3);
}

.page-promotions-birthday-bonus__faq-item.active p {
    display: block;
}

/* Final CTA */
.page-promotions-birthday-bonus__cta-final {
    background: linear-gradient(45deg, #E94560 0%, #D63450 100%);
    color: #FFFFFF;
    padding: 80px 0;
}

.page-promotions-birthday-bonus__cta-final h2 {
    color: #FFFFFF;
    font-size: 3em;
}

.page-promotions-birthday-bonus__cta-final p {
    color: #F0F0F0;
    font-size: 1.2em;
    max-width: 800px;
    margin: 20px auto 40px auto;
}

.page-promotions-birthday-bonus__cta-final .page-promotions-birthday-bonus__button--primary {
    background-color: #1A1A2E;
    color: #E94560;
}

.page-promotions-birthday-bonus__cta-final .page-promotions-birthday-bonus__button--primary:hover {
    background-color: #3a3a5e;
    color: #FFFFFF;
}

.page-promotions-birthday-bonus__cta-final .page-promotions-birthday-bonus__button--secondary {
    border-color: #1A1A2E;
    color: #1A1A2E;
}

.page-promotions-birthday-bonus__cta-final .page-promotions-birthday-bonus__button--secondary:hover {
    background-color: #1A1A2E;
    color: #E94560;
}

.page-promotions-birthday-bonus__cta-image {
    max-width: 400px;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-birthday-bonus__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions-birthday-bonus__hero-content {
        order: 2;
    }

    .page-promotions-birthday-bonus__hero-image-wrapper {
        order: 1;
    }

    .page-promotions-birthday-bonus__hero-image {
        max-width: 100%;
    }

    .page-promotions-birthday-bonus h1 {
        font-size: 2.5em;
    }

    .page-promotions-birthday-bonus h2 {
        font-size: 2em;
    }

    .page-promotions-birthday-bonus h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-birthday-bonus__section {
        padding: 40px 0;
    }

    .page-promotions-birthday-bonus h1 {
        font-size: 2em;
    }

    .page-promotions-birthday-bonus h2 {
        font-size: 1.8em;
    }

    .page-promotions-birthday-bonus p {
        font-size: 1em;
    }

    .page-promotions-birthday-bonus__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-birthday-bonus__benefits-grid,
    .page-promotions-birthday-bonus__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-birthday-bonus__step-item {
        padding-top: 60px;
    }

    .page-promotions-birthday-bonus__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        top: -20px;
    }

    .page-promotions-birthday-bonus__faq-item h3 {
        font-size: 1.2em;
    }

    .page-promotions-birthday-bonus__cta-final h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-promotions-birthday-bonus__hero-content h1 {
        font-size: 1.8em;
    }

    .page-promotions-birthday-bonus__button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }

    .page-promotions-birthday-bonus__hero-image {
        max-width: 90%;
    }
}