/* style/promotions-birthday-bonus.css */

/* Base styles for the page content */
.page-promotions-birthday-bonus {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text */
    background-color: #1a1a2e; /* Dark background */
    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(odd) {
    background-color: #0F284B; /* Slightly lighter dark blue for contrast */
}

.page-promotions-birthday-bonus__section-title {
    font-size: 2.8em;
    color: #FFD600; /* Bright gold for main titles */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-promotions-birthday-bonus__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #CCCCCC; /* Lighter grey for readability */
}

.page-promotions-birthday-bonus__text--center {
    text-align: center;
}

.page-promotions-birthday-bonus__link {
    color: #FFD600; /* Gold for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-birthday-bonus__link:hover {
    color: #FFF;
    text-decoration: underline;
}

/* Hero Section */
.page-promotions-birthday-bonus__hero {
    background: linear-gradient(135deg, #0D47A1 0%, #082F63 100%); /* Deep blue gradient */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

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

.page-promotions-birthday-bonus__hero-title {
    font-size: 3.8em;
    color: #FFD600; /* Bright gold for hero title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-birthday-bonus__hero-subtitle {
    font-size: 1.5em;
    color: #FFF;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-birthday-bonus__hero-button {
    display: inline-block;
    background-color: #FFD600; /* Gold button */
    color: #0D47A1; /* Deep blue text */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 214, 0, 0.4);
}

.page-promotions-birthday-bonus__hero-button:hover {
    background-color: #0D47A1; /* Deep blue on hover */
    color: #FFD600; /* Gold text on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.6);
}

.page-promotions-birthday-bonus__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-promotions-birthday-bonus__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(50%);
}

/* Lists */
.page-promotions-birthday-bonus__list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.page-promotions-birthday-bonus__list li {
    background-color: #0D47A1; /* Deep blue list item background */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 1.05em;
    color: #FFF;
}

.page-promotions-birthday-bonus__list-icon {
    color: #FFD600; /* Gold icon */
    font-size: 1.4em;
    margin-right: 15px;
    line-height: 1;
}

.page-promotions-birthday-bonus__list--styled li {
    background-color: #0F284B; /* Slightly different background for terms */
}

.page-promotions-birthday-bonus__list-dot {
    color: #FFD600; /* Gold dot */
    font-size: 1.2em;
    margin-right: 10px;
    line-height: 1;
}

/* How-to-claim steps */
.page-promotions-birthday-bonus__steps {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 900px;
    text-align: left;
}

.page-promotions-birthday-bonus__steps li {
    background-color: #0D47A1; /* Deep blue step background */
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    font-size: 1.1em;
    color: #FFF;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-birthday-bonus__steps li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.page-promotions-birthday-bonus__step-number {
    background-color: #FFD600; /* Gold number background */
    color: #0D47A1; /* Deep blue number text */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.page-promotions-birthday-bonus__image-fullwidth {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-birthday-bonus__image-small {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.page-promotions-birthday-bonus__button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    border: 2px solid transparent;
}

.page-promotions-birthday-bonus__button--primary {
    background-color: #FFD600; /* Gold primary button */
    color: #0D47A1; /* Deep blue text */
    box-shadow: 0 4px 10px rgba(255, 214, 0, 0.3);
}

.page-promotions-birthday-bonus__button--primary:hover {
    background-color: #E0B800; /* Darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 214, 0, 0.5);
}

.page-promotions-birthday-bonus__button--secondary {
    background-color: #0D47A1; /* Deep blue secondary button */
    color: #FFD600; /* Gold text */
    border-color: #FFD600;
    box-shadow: 0 4px 10px rgba(13, 71, 161, 0.3);
}

.page-promotions-birthday-bonus__button--secondary:hover {
    background-color: #FFD600; /* Gold on hover */
    color: #0D47A1; /* Deep blue text on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 71, 161, 0.5);
}

.page-promotions-birthday-bonus__button--ghost {
    background-color: transparent;
    color: #FFD600; /* Gold text */
    border-color: #FFD600;
}

.page-promotions-birthday-bonus__button--ghost:hover {
    background-color: #FFD600; /* Gold on hover */
    color: #0D47A1; /* Deep blue text on hover */
    transform: translateY(-2px);
}

/* Why j9bet features grid */
.page-promotions-birthday-bonus__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-birthday-bonus__feature-item {
    background-color: #0D47A1; /* Deep blue feature item background */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    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__feature-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-birthday-bonus__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 214, 0, 0.6)); /* Gold glow for icons */
}

.page-promotions-birthday-bonus__feature-title {
    font-size: 1.5em;
    color: #FFD600; /* Gold feature title */
    margin-bottom: 15px;
}

.page-promotions-birthday-bonus__feature-description {
    font-size: 1em;
    color: #E0E0E0;
}

/* FAQ Section */
.page-promotions-birthday-bonus__faq {
    background-color: #0F284B; /* Slightly lighter dark blue */
}

.page-promotions-birthday-bonus__faq-item {
    background-color: #0D47A1; /* Deep blue FAQ item background */
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-birthday-bonus__faq-question {
    font-size: 1.3em;
    color: #FFD600; /* Gold FAQ question */
    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.5em;
    color: #FFD600;
    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: #E0E0E0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 214, 0, 0.2);
    margin-top: 15px;
    display: none; /* Hidden by default, toggled by JS */
}

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

/* Call to Action Section */
.page-promotions-birthday-bonus__cta {
    background: linear-gradient(45deg, #0D47A1, #082F63); /* Deep blue gradient */
    padding: 80px 20px;
    text-align: center;
}

.page-promotions-birthday-bonus__cta-title {
    font-size: 3em;
    color: #FFD600; /* Gold CTA title */
    margin-bottom: 25px;
}

.page-promotions-birthday-bonus__cta-description {
    font-size: 1.3em;
    color: #FFF;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-birthday-bonus__section-title {
        font-size: 2.2em;
    }
    .page-promotions-birthday-bonus__hero-title {
        font-size: 3em;
    }
    .page-promotions-birthday-bonus__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-birthday-bonus__cta-title {
        font-size: 2.5em;
    }
    .page-promotions-birthday-bonus__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-birthday-bonus__hero {
        padding: 60px 15px;
    }
    .page-promotions-birthday-bonus__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-birthday-bonus__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-birthday-bonus__section {
        padding: 40px 0;
    }
    .page-promotions-birthday-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-birthday-bonus__text {
        font-size: 1em;
    }
    .page-promotions-birthday-bonus__list li,
    .page-promotions-birthday-bonus__steps li {
        padding: 15px;
        font-size: 0.95em;
    }
    .page-promotions-birthday-bonus__step-number {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        margin-right: 15px;
    }
    .page-promotions-birthday-bonus__feature-item {
        padding: 20px;
    }
    .page-promotions-birthday-bonus__feature-title {
        font-size: 1.3em;
    }
    .page-promotions-birthday-bonus__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-birthday-bonus__cta-title {
        font-size: 2em;
    }
    .page-promotions-birthday-bonus__cta-description {
        font-size: 1em;
    }
    .page-promotions-birthday-bonus__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-birthday-bonus__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-promotions-birthday-bonus__hero-title {
        font-size: 2em;
    }
    .page-promotions-birthday-bonus__hero-subtitle {
        font-size: 0.95em;
    }
    .page-promotions-birthday-bonus__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-birthday-bonus__section-title {
        font-size: 1.6em;
    }
    .page-promotions-birthday-bonus__list-icon,
    .page-promotions-birthday-bonus__list-dot {
        font-size: 1.2em;
    }
    .page-promotions-birthday-bonus__faq-question {
        font-size: 1em;
    }
    .page-promotions-birthday-bonus__cta-title {
        font-size: 1.8em;
    }
}