/* style/promotions-holiday-specials.css */

/* Biến CSS */
:root {
    --page-promotions-holiday-specials-primary-color: #0A2239;
    --page-promotions-holiday-specials-secondary-color: #E0B44B;
    --page-promotions-holiday-specials-text-light: #F8F8F8;
    --page-promotions-holiday-specials-text-dark: #333333;
    --page-promotions-holiday-specials-background-dark: #0A2239;
    --page-promotions-holiday-specials-background-light: #F5F5F5;
    --page-promotions-holiday-specials-accent-color: #f5ddc6; /* Lấy từ gợi ý màu bổ trợ của primary */
    --page-promotions-holiday-specials-link-color: #E0B44B;
}

.page-promotions-holiday-specials {
    font-family: 'Arial', sans-serif;
    color: var(--page-promotions-holiday-specials-text-dark);
    line-height: 1.6;
    background-color: var(--page-promotions-holiday-specials-background-light);
}

.page-promotions-holiday-specials__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions-holiday-specials__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-holiday-specials__section:nth-of-type(odd) {
    background-color: var(--page-promotions-holiday-specials-background-light);
}

.page-promotions-holiday-specials__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-promotions-holiday-specials__section-title {
    font-size: 2.8em;
    color: var(--page-promotions-holiday-specials-primary-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-holiday-specials__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-promotions-holiday-specials-secondary-color);
    border-radius: 2px;
}

.page-promotions-holiday-specials__hero {
    background: linear-gradient(135deg, var(--page-promotions-holiday-specials-primary-color) 0%, #1a3a5a 100%); /* Slightly lighter variant for gradient */
    color: var(--page-promotions-holiday-specials-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-holiday-specials__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-promotions-holiday-specials-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-holiday-specials__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-promotions-holiday-specials-text-light);
}

.page-promotions-holiday-specials__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-promotions-holiday-specials__btn--primary {
    background-color: var(--page-promotions-holiday-specials-secondary-color);
    color: var(--page-promotions-holiday-specials-primary-color);
}

.page-promotions-holiday-specials__btn--primary:hover {
    background-color: #c99c3e; /* Darker variant of secondary color */
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-holiday-specials__btn--secondary {
    background-color: var(--page-promotions-holiday-specials-primary-color);
    color: var(--page-promotions-holiday-specials-secondary-color);
    border: 2px solid var(--page-promotions-holiday-specials-secondary-color);
    margin-left: 20px;
}

.page-promotions-holiday-specials__btn--secondary:hover {
    background-color: var(--page-promotions-holiday-specials-secondary-color);
    color: var(--page-promotions-holiday-specials-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-holiday-specials__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-promotions-holiday-specials__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.page-promotions-holiday-specials__content-grid .page-promotions-holiday-specials__image-wrapper {
    text-align: center;
}

.page-promotions-holiday-specials__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.page-promotions-holiday-specials__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--page-promotions-holiday-specials-text-dark);
}

.page-promotions-holiday-specials__highlight {
    color: var(--page-promotions-holiday-specials-primary-color);
    font-weight: bold;
}

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

.page-promotions-holiday-specials__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-holiday-specials__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-holiday-specials__feature-item h3 {
    color: var(--page-promotions-holiday-specials-primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-promotions-holiday-specials__feature-item p {
    color: #555555;
}

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

.page-promotions-holiday-specials__card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-holiday-specials__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-holiday-specials__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-promotions-holiday-specials__card h3 {
    color: var(--page-promotions-holiday-specials-primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-promotions-holiday-specials__text-center {
    text-align: center;
    margin-top: 30px;
}

.page-promotions-holiday-specials__text-link {
    color: var(--page-promotions-holiday-specials-link-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-holiday-specials__text-link:hover {
    color: #c99c3e;
    text-decoration: underline;
}

.page-promotions-holiday-specials__event-card-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 40px;
}

.page-promotions-holiday-specials__event-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}

.page-promotions-holiday-specials__event-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-promotions-holiday-specials__event-content {
    padding: 30px;
}

.page-promotions-holiday-specials__event-content h3 {
    color: var(--page-promotions-holiday-specials-primary-color);
    font-size: 2em;
    margin-bottom: 15px;
}

.page-promotions-holiday-specials__event-content p {
    margin-bottom: 15px;
    color: #444444;
}

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

.page-promotions-holiday-specials__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.page-promotions-holiday-specials__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--page-promotions-holiday-specials-secondary-color);
    color: var(--page-promotions-holiday-specials-primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid var(--page-promotions-holiday-specials-primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-holiday-specials__step-item h3 {
    color: var(--page-promotions-holiday-specials-primary-color);
    font-size: 1.6em;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-promotions-holiday-specials__step-item p {
    color: #555555;
}

.page-promotions-holiday-specials__responsible-gaming {
    background-color: var(--page-promotions-holiday-specials-primary-color);
    color: var(--page-promotions-holiday-specials-text-light);
}

.page-promotions-holiday-specials__responsible-gaming .page-promotions-holiday-specials__section-title {
    color: var(--page-promotions-holiday-specials-secondary-color);
}

.page-promotions-holiday-specials__responsible-gaming p {
    color: var(--page-promotions-holiday-specials-text-light);
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
}

.page-promotions-holiday-specials__responsible-gaming .page-promotions-holiday-specials__btn--secondary {
    background-color: transparent;
    color: var(--page-promotions-holiday-specials-secondary-color);
    border-color: var(--page-promotions-holiday-specials-secondary-color);
}

.page-promotions-holiday-specials__responsible-gaming .page-promotions-holiday-specials__btn--secondary:hover {
    background-color: var(--page-promotions-holiday-specials-secondary-color);
    color: var(--page-promotions-holiday-specials-primary-color);
}

.page-promotions-holiday-specials__faq {
    background-color: var(--page-promotions-holiday-specials-background-light);
}

.page-promotions-holiday-specials__faq-item {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-promotions-holiday-specials__faq-item h3 {
    color: var(--page-promotions-holiday-specials-primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-promotions-holiday-specials__faq-item p {
    color: #555555;
}

.page-promotions-holiday-specials__cta {
    background: linear-gradient(135deg, var(--page-promotions-holiday-specials-primary-color) 0%, #1a3a5a 100%);
    color: var(--page-promotions-holiday-specials-text-light);
    padding: 80px 0;
}

.page-promotions-holiday-specials__cta .page-promotions-holiday-specials__section-title {
    color: var(--page-promotions-holiday-specials-secondary-color);
}

.page-promotions-holiday-specials__cta p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-promotions-holiday-specials-text-light);
}

.page-promotions-holiday-specials__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-holiday-specials__hero-title {
        font-size: 3em;
    }
    .page-promotions-holiday-specials__section-title {
        font-size: 2.2em;
    }
    .page-promotions-holiday-specials__content-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-holiday-specials__event-card {
        flex-direction: column;
    }
    .page-promotions-holiday-specials__event-image {
        height: 200px;
    }
    .page-promotions-holiday-specials__event-content {
        padding: 20px;
    }
    .page-promotions-holiday-specials__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-holiday-specials__btn--secondary {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-promotions-holiday-specials__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-holiday-specials__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-holiday-specials__section-title {
        font-size: 1.8em;
    }
    .page-promotions-holiday-specials__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-holiday-specials__feature-list, .page-promotions-holiday-specials__grid-3-col, .page-promotions-holiday-specials__step-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-promotions-holiday-specials__hero-title {
        font-size: 2em;
    }
    .page-promotions-holiday-specials__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-holiday-specials__section-title {
        font-size: 1.5em;
    }
    .page-promotions-holiday-specials__btn {
        width: 100%;
        box-sizing: border-box;
    }
    .page-promotions-holiday-specials__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }
    .page-promotions-holiday-specials__event-image {
        height: 150px;
    }
    .page-promotions-holiday-specials__event-content h3 {
        font-size: 1.5em;
    }
    .page-promotions-holiday-specials__step-item h3 {
        font-size: 1.4em;
    }
}