/* style/resources-goo88d-latest-promotions.css */

/* Biến CSS cho màu sắc */
:root {
    --page-primary-color: #003366; /* Deep Blue */
    --page-secondary-color: #FFD700; /* Gold */
    --page-text-color-light: #FFFFFF;
    --page-text-color-dark: #333333;
    --page-accent-color: #CC0000; /* Red for emphasis */
    --page-background-light: #F8F8F8;
}

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

.page-resources-goo88d-latest-promotions .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-goo88d-latest-promotions .hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #004d99 100%); /* Darker blue gradient */
    color: var(--page-text-color-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-goo88d-latest-promotions .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
    transform: rotate(45deg);
    opacity: 0.5;
}

.page-resources-goo88d-latest-promotions .hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-resources-goo88d-latest-promotions .hero-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-resources-goo88d-latest-promotions .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.page-resources-goo88d-latest-promotions .btn-primary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-goo88d-latest-promotions .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-goo88d-latest-promotions .btn-secondary {
    background-color: var(--page-primary-color);
    color: var(--page-secondary-color);
    border: 2px solid var(--page-secondary-color);
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.3);
}

.page-resources-goo88d-latest-promotions .btn-secondary:hover {
    background-color: #004080;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 51, 102, 0.5);
}

.page-resources-goo88d-latest-promotions .btn-large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* General Section Styling */
.page-resources-goo88d-latest-promotions section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-resources-goo88d-latest-promotions section:nth-of-type(even) {
    background-color: #f0f4f7;
}

.page-resources-goo88d-latest-promotions h2 {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-goo88d-latest-promotions h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-goo88d-latest-promotions h3 {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid var(--page-secondary-color);
    padding-left: 15px;
}

.page-resources-goo88d-latest-promotions p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--page-text-color-dark);
}

.page-resources-goo88d-latest-promotions strong {
    color: var(--page-primary-color);
}

.page-resources-goo88d-latest-promotions ul,
.page-resources-goo88d-latest-promotions ol {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.05em;
    color: var(--page-text-color-dark);
}

.page-resources-goo88d-latest-promotions ol {
    list-style-type: decimal;
}

.page-resources-goo88d-latest-promotions li {
    margin-bottom: 8px;
}

/* Image Styling */
.page-resources-goo88d-latest-promotions .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-goo88d-latest-promotions .promotion-overview-image {
    margin-top: 40px;
}

/* Promotion Types Section */
.page-resources-goo88d-latest-promotions .promotion-item {
    background-color: var(--page-text-color-light);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-goo88d-latest-promotions .promotion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.page-resources-goo88d-latest-promotions .promotion-item h3 {
    color: var(--page-accent-color);
    border-left-color: var(--page-primary-color);
}

.page-resources-goo88d-latest-promotions .promotion-type-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

/* How to Claim Section */
.page-resources-goo88d-latest-promotions .step-item {
    background-color: var(--page-text-color-light);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-goo88d-latest-promotions .step-item h3 {
    color: var(--page-primary-color);
}

.page-resources-goo88d-latest-promotions .process-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    margin-bottom: 25px;
}

/* Why Choose Section */
.page-resources-goo88d-latest-promotions .reason-item {
    background-color: var(--page-text-color-light);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-goo88d-latest-promotions .reason-item h3 {
    color: var(--page-primary-color);
}

.page-resources-goo88d-latest-promotions .reason-image {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    margin-bottom: 25px;
}

/* FAQ Section */
.page-resources-goo88d-latest-promotions .faq-section {
    background-color: var(--page-primary-color);
    color: var(--page-text-color-light);
    padding: 80px 0;
}

.page-resources-goo88d-latest-promotions .faq-section h2 {
    color: var(--page-secondary-color);
}

.page-resources-goo88d-latest-promotions .faq-section h2::after {
    background-color: var(--page-text-color-light);
}

.page-resources-goo88d-latest-promotions .faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-resources-goo88d-latest-promotions .faq-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-resources-goo88d-latest-promotions .faq-item h3 {
    color: var(--page-secondary-color);
    font-size: 1.5em;
    margin-top: 0;
    border-left-color: var(--page-secondary-color);
}

.page-resources-goo88d-latest-promotions .faq-item p {
    color: var(--page-text-color-light);
    font-size: 1.05em;
}

/* Conclusion Section */
.page-resources-goo88d-latest-promotions .conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-resources-goo88d-latest-promotions .conclusion-section p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-goo88d-latest-promotions .hero-section h1 {
        font-size: 2.5em;
    }

    .page-resources-goo88d-latest-promotions .hero-section p {
        font-size: 1.1em;
    }

    .page-resources-goo88d-latest-promotions h2 {
        font-size: 2em;
    }

    .page-resources-goo88d-latest-promotions h3 {
        font-size: 1.5em;
    }

    .page-resources-goo88d-latest-promotions .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-goo88d-latest-promotions .btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-resources-goo88d-latest-promotions section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-resources-goo88d-latest-promotions .hero-section h1 {
        font-size: 2em;
    }

    .page-resources-goo88d-latest-promotions .hero-section p {
        font-size: 1em;
    }

    .page-resources-goo88d-latest-promotions h2 {
        font-size: 1.8em;
    }

    .page-resources-goo88d-latest-promotions h3 {
        font-size: 1.3em;
    }

    .page-resources-goo88d-latest-promotions .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .page-resources-goo88d-latest-promotions .container {
        padding: 0 15px;
    }
}