/* style/promotions-birthday-bonus.css */
.page-promotions-birthday-bonus {
    font-family: 'Arial', sans-serif;
    color: #f5f0e7; /* Light text on dark background */
    background-color: #0A0F18;
}

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

.page-promotions-birthday-bonus__hero {
    background: linear-gradient(135deg, #0A0F18 0%, #2a3a5a 100%);
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-promotions-birthday-bonus__hero-content {
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.page-promotions-birthday-bonus__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-birthday-bonus__hero-description {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-promotions-birthday-bonus__hero-image-wrapper {
    position: absolute;
    bottom: -50px; /* Adjust to show part of the image */
    right: -50px;
    opacity: 0.1;
    z-index: 1;
    width: 400px;
    height: 400px;
}

.page-promotions-birthday-bonus__hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.page-promotions-birthday-bonus__btn--primary {
    background-color: #FFD700;
    color: #0A0F18;
    border: 2px solid #FFD700;
}

.page-promotions-birthday-bonus__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-promotions-birthday-bonus__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A0F18;
    transform: translateY(-3px);
}

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

.page-promotions-birthday-bonus__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-birthday-bonus__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-promotions-birthday-bonus__section-text {
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #e0e0e0;
}

.page-promotions-birthday-bonus__intro {
    background-color: #1a1f28;
}

.page-promotions-birthday-bonus__how-to-claim {
    background-color: #0A0F18;
}

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

.page-promotions-birthday-bonus__step-item {
    background-color: #1a1f28;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-birthday-bonus__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-birthday-bonus__step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-birthday-bonus__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-birthday-bonus__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.page-promotions-birthday-bonus__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1em;
    color: #c0c0c0;
}

.page-promotions-birthday-bonus__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 0.9em;
}

.page-promotions-birthday-bonus__note {
    font-style: italic;
    color: #999;
    margin-top: 30px;
    font-size: 0.95em;
}

.page-promotions-birthday-bonus__action-center {
    margin-top: 40px;
}

.page-promotions-birthday-bonus__benefits {
    background-color: #1a1f28;
}

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

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

.page-promotions-birthday-bonus__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-birthday-bonus__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px #FFD700);
}

.page-promotions-birthday-bonus__benefit-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-birthday-bonus__benefit-text {
    font-size: 1em;
    line-height: 1.7;
    color: #c0c0c0;
}

.page-promotions-birthday-bonus__faq {
    background-color: #0A0F18;
}

.page-promotions-birthday-bonus__faq-item {
    background-color: #1a1f28;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-birthday-bonus__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

.page-promotions-birthday-bonus__faq-answer {
    font-size: 1em;
    color: #c0c0c0;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
    padding-top: 0;
}

.page-promotions-birthday-bonus__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding-top: 15px;
}

.page-promotions-birthday-bonus__cta {
    background-color: #2a3a5a;
    border-top: 5px solid #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions-birthday-bonus__hero {
        padding: 80px 0;
    }

    .page-promotions-birthday-bonus__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-birthday-bonus__hero-description {
        font-size: 1em;
    }

    .page-promotions-birthday-bonus__section-title {
        font-size: 2em;
    }

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

    .page-promotions-birthday-bonus__hero-image-wrapper {
        width: 300px;
        height: 300px;
        bottom: -30px;
        right: -30px;
    }
}

@media (max-width: 480px) {
    .page-promotions-birthday-bonus__hero {
        padding: 60px 0;
    }

    .page-promotions-birthday-bonus__hero-title {
        font-size: 2em;
    }

    .page-promotions-birthday-bonus__hero-description {
        font-size: 0.9em;
    }

    .page-promotions-birthday-bonus__section-title {
        font-size: 1.8em;
    }

    .page-promotions-birthday-bonus__btn {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 5px;
    }

    .page-promotions-birthday-bonus__hero-image-wrapper {
        display: none; /* Hide on very small screens if it obstructs content */
    }
}