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

/* Biến CSS */
:root {
    --page-promotions-birthday-bonus-primary-color: #0A2463;
    --page-promotions-birthday-bonus-secondary-color: #E3B505;
    --page-promotions-birthday-bonus-text-light: #F8F8F8;
    --page-promotions-birthday-bonus-text-dark: #333333;
    --page-promotions-birthday-bonus-background-light: #FFFFFF;
    --page-promotions-birthday-bonus-background-dark: #071C46;
    --page-promotions-birthday-bonus-border-color: #DCDCDC;
}

.page-promotions-birthday-bonus {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--page-promotions-birthday-bonus-text-dark);
    background-color: var(--page-promotions-birthday-bonus-background-light);
}

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

.page-promotions-birthday-bonus__hero-section {
    background: linear-gradient(135deg, var(--page-promotions-birthday-bonus-primary-color) 0%, #0A3A93 100%);
    color: var(--page-promotions-birthday-bonus-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-birthday-bonus__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,patterns,dark_blue,gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-birthday-bonus__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.page-promotions-birthday-bonus__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-promotions-birthday-bonus__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.page-promotions-birthday-bonus__button--primary {
    background-color: var(--page-promotions-birthday-bonus-secondary-color);
    color: var(--page-promotions-birthday-bonus-primary-color);
    border: 2px solid var(--page-promotions-birthday-bonus-secondary-color);
}

.page-promotions-birthday-bonus__button--primary:hover {
    background-color: #FFC91A;
    border-color: #FFC91A;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-birthday-bonus__button--secondary {
    background-color: transparent;
    color: var(--page-promotions-birthday-bonus-secondary-color);
    border: 2px solid var(--page-promotions-birthday-bonus-secondary-color);
    margin-left: 20px;
}

.page-promotions-birthday-bonus__button--secondary:hover {
    background-color: var(--page-promotions-birthday-bonus-secondary-color);
    color: var(--page-promotions-birthday-bonus-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-promotions-birthday-bonus__section-title {
    font-size: 2.5em;
    color: var(--page-promotions-birthday-bonus-primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.page-promotions-birthday-bonus__subtitle {
    font-size: 1.1em;
    color: var(--page-promotions-birthday-bonus-text-dark);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-birthday-bonus__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-promotions-birthday-bonus__content-wrapper:nth-child(even) {
    flex-direction: row-reverse;
}

.page-promotions-birthday-bonus__text-content {
    flex: 1;
}

.page-promotions-birthday-bonus__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #555;
}

.page-promotions-birthday-bonus__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions-birthday-bonus__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-birthday-bonus__steps li {
    background-color: var(--page-promotions-birthday-bonus-background-light);
    border: 1px solid var(--page-promotions-birthday-bonus-border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-birthday-bonus__steps li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-birthday-bonus__steps h3 {
    font-size: 1.5em;
    color: var(--page-promotions-birthday-bonus-primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions-birthday-bonus__steps p {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-promotions-birthday-bonus__note {
    background-color: #FFF3E0;
    border-left: 5px solid var(--page-promotions-birthday-bonus-secondary-color);
    padding: 20px;
    margin-top: 50px;
    text-align: left;
    border-radius: 8px;
}

.page-promotions-birthday-bonus__note strong {
    color: var(--page-promotions-birthday-bonus-secondary-color);
}

.page-promotions-birthday-bonus__list {
    list-style: disc;
    margin-left: 20px;
    color: #555;
    font-size: 1em;
}

.page-promotions-birthday-bonus__list li {
    margin-bottom: 10px;
}

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

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

.page-promotions-birthday-bonus__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-birthday-bonus__grid-item .page-promotions-birthday-bonus__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-promotions-birthday-bonus__grid-item h3 {
    font-size: 1.4em;
    color: var(--page-promotions-birthday-bonus-primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions-birthday-bonus__grid-item p {
    color: #666;
    font-size: 0.95em;
}

.page-promotions-birthday-bonus__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-promotions-birthday-bonus__faq-item {
    background-color: var(--page-promotions-birthday-bonus-background-light);
    border: 1px solid var(--page-promotions-birthday-bonus-border-color);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promotions-birthday-bonus__faq-item h3 {
    font-size: 1.25em;
    color: var(--page-promotions-birthday-bonus-primary-color);
    margin-bottom: 10px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.page-promotions-birthday-bonus__faq-item p {
    color: #555;
    font-size: 1em;
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
    display: none; /* Ẩn nội dung mặc định */
}

.page-promotions-birthday-bonus__faq-item.active p {
    display: block; /* Hiển thị khi active */
}

.page-promotions-birthday-bonus__cta {
    background: linear-gradient(90deg, var(--page-promotions-birthday-bonus-background-dark) 0%, #0A3A93 100%);
    color: var(--page-promotions-birthday-bonus-text-light);
    padding: 80px 0;
}

.page-promotions-birthday-bonus__cta-description {
    font-size: 1.2em;
    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;
}

.page-promotions-birthday-bonus__responsible-gaming {
    margin-top: 50px;
    font-size: 0.9em;
    opacity: 0.8;
}

.page-promotions-birthday-bonus .highlight {
    color: var(--page-promotions-birthday-bonus-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-birthday-bonus__hero-title {
        font-size: 2.8em;
    }

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

    .page-promotions-birthday-bonus__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions-birthday-bonus__content-wrapper:nth-child(even) {
        flex-direction: column;
    }

    .page-promotions-birthday-bonus__image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-promotions-birthday-bonus__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-promotions-birthday-bonus__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-promotions-birthday-bonus__section {
        padding: 40px 0;
    }

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

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

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

    .page-promotions-birthday-bonus__grid {
        grid-template-columns: 1fr;
    }

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

    .page-promotions-birthday-bonus__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

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

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

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