/* style/index-latest-promotions.css */
.page-index-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark grey for good contrast */
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-index-latest-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-latest-promotions__hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #000080 100%); /* Gold to Navy Blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF; /* White text for contrast */
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

.page-index-latest-promotions__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.page-index-latest-promotions__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF; /* White for strong contrast on dark background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #E0E0E0; /* Light grey for good contrast */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-latest-promotions__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #000080; /* Navy Blue */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-index-latest-promotions__cta-button:hover {
    background-color: #e0b800; /* Slightly darker gold */
    transform: translateY(-3px);
    border-color: #e0b800;
}

.page-index-latest-promotions__cta-button--small {
    padding: 10px 25px;
    font-size: 1em;
    border-radius: 30px;
}

.page-index-latest-promotions__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 60px;
}

.page-index-latest-promotions__hero-image-wrapper {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-latest-promotions__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__section-title {
    font-size: 2.5em;
    color: #000080; /* Navy Blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-latest-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    border-radius: 2px;
}

.page-index-latest-promotions__why-choose-section,
.page-index-latest-promotions__promotions-list-section,
.page-index-latest-promotions__guide-section,
.page-index-latest-promotions__terms-section,
.page-index-latest-promotions__tips-section,
.page-index-latest-promotions__about-32win-section,
.page-index-latest-promotions__faq-section,
.page-index-latest-promotions__join-community-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions__promotions-list-section {
    background-color: #FDFDFD;
}

.page-index-latest-promotions__why-choose-section {
    background-color: #E6F2FF; /* Light blueish background for this section, good contrast with navy text */
}

.page-index-latest-promotions__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-index-latest-promotions__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-latest-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.page-index-latest-promotions__feature-title {
    font-size: 1.5em;
    color: #000080; /* Navy Blue */
    margin-bottom: 10px;
}