/* style/khuyn-mi.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #222222;
    --border-color: #e0e0e0;
}

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

.page-khuyn-mi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-khuyn-mi-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
    background-color: var(--secondary-color);
    padding: 40px 0;
}

.page-khuyn-mi-banner-img {
    width: 100%;
    height: auto;
    max-height: 500px; /* Adjust as needed */
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-khuyn-mi-banner-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.4); /* Overlay for readability */
    margin-top: -100px; /* Overlap with image slightly */
    border-radius: 0 0 10px 10px;
}

.page-khuyn-mi-banner-content h1 {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-khuyn-mi-banner-content p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.page-khuyn-mi-banner-content p strong {
    color: var(--primary-color);
}

.page-khuyn-mi-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-khuyn-mi-cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-khuyn-mi-intro, .page-khuyn-mi-welcome-offers, .page-khuyn-mi-daily-weekly,
.page-khuyn-mi-game-specific, .page-khuyn-mi-vip-program, .page-khuyn-mi-terms,
.page-khuyn-mi-how-to-claim, .page-khuyn-mi-benefits, .page-khuyn-mi-why-choose,
.page-khuyn-mi-faq {
    padding: 60px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.page-khuyn-mi-intro {
    background-color: #ffffff;
}

.page-khuyn-mi-intro h2,
.page-khuyn-mi-welcome-offers h2,
.page-khuyn-mi-daily-weekly h2,
.page-khuyn-mi-game-specific h2,
.page-khuyn-mi-vip-program h2,
.page-khuyn-mi-terms h2,
.page-khuyn-mi-how-to-claim h2,
.page-khuyn-mi-benefits h2,
.page-khuyn-mi-why-choose h2,
.page-khuyn-mi-faq h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-khuyn-mi-intro h2::after,
.page-khuyn-mi-welcome-offers h2::after,
.page-khuyn-mi-daily-weekly h2::after,
.page-khuyn-mi-game-specific h2::after,
.page-khuyn-mi-vip-program h2::after,
.page-khuyn-mi-terms h2::after,
.page-khuyn-mi-how-to-claim h2::after,
.page-khuyn-mi-benefits h2::after,
.page-khuyn-mi-why-choose h2::after,
.page-khuyn-mi-faq h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-khuyn-mi-intro p,
.page-khuyn-mi-terms p,
.page-khuyn-mi-how-to-claim p,
.page-khuyn-mi-benefits p,
.page-khuyn-mi-why-choose p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-khuyn-mi-intro p strong {
    color: var(--secondary-color);
}

.page-khuyn-mi-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-khuyn-mi-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-khuyn-mi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}