/* style/index-jun8-latest-promotions.css */
.page-index-jun8-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-index-jun8-latest-promotions .hero-section {
    background: linear-gradient(135deg, #FFD700, #000080);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-jun8-latest-promotions .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-jun8-latest-promotions .hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-index-jun8-latest-promotions .hero-actions .btn {
    margin: 0 10px;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-jun8-latest-promotions .hero-actions .btn-primary {
    background-color: #000080;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-jun8-latest-promotions .hero-actions .btn-primary:hover {
    background-color: #000066;
    transform: translateY(-3px);
}

.page-index-jun8-latest-promotions .hero-actions .btn-secondary {
    background-color: #FFD700;
    color: #000080;
    border: 2px solid #000080;
}

.page-index-jun8-latest-promotions .hero-actions .btn-secondary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* General Section Styling */
.page-index-jun8-latest-promotions .section-title {
    font-size: 2.5em;
    color: #000080;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-index-jun8-latest-promotions .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-index-jun8-latest-promotions .introduction-section, 
.page-index-jun8-latest-promotions .promotion-categories-section, 
.page-index-jun8-latest-promotions .how-to-participate-section, 
.page-index-jun8-latest-promotions .featured-promotions-section, 
.page-index-jun8-latest-promotions .why-jun8-section, 
.page-index-jun8-latest-promotions .faq-section, 
.page-index-jun8-latest-promotions .cta-section {
    padding: 60px 0;
}

.page-index-jun8-latest-promotions .introduction-section p, 
.page-index-jun8-latest-promotions .promotion-categories-section p, 
.page-index-jun8-latest-promotions .how-to-participate-section p, 
.page-index-jun8-latest-promotions .featured-promotions-section p, 
.page-index-jun8-latest-promotions .why-jun8-section p, 
.page-index-jun8-latest-promotions .faq-section p {
    text-align: justify;
    margin-bottom: 15px;
}

.page-index-jun8-latest-promotions .highlight-keyword {
    font-weight: bold;
    color: #000080;
}

/* Promotion Categories Grid */
.page-index-jun8-latest-promotions .promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-jun8-latest-promotions .promotion-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-jun8-latest-promotions .promotion-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-jun8-latest-promotions .promotion-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-jun8-latest-promotions .promotion-title {
    font-size: 1.5em;
    color: #000080;
    margin-bottom: 15px;
}

.page-index-jun8-latest-promotions .promotion-description {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
}

.page-index-jun8-latest-promotions .btn-link {
    display: inline-block;
    background-color: #FFD700;
    color: #000080;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-index-jun8-latest-promotions .btn-link:hover {
    background-color: #e6c200;
}

/* How to Participate Section */
.page-index-jun8-latest-promotions .steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-index-jun8-latest-promotions .steps-list li {
    background-color: #fff;
    border-left: 5px solid #FFD700;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-index-jun8-latest-promotions .steps-list li:last-child {
    margin-bottom: 0;
}

.page-index-jun8-latest-promotions .step-title {
    font-size: 1.8em;
    color: #000080;
    margin-bottom: 10px;
}

.page-index-jun8-latest-promotions .btn-inline {
    display: inline-block;
    background-color: #000080;
    color: #FFD700;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.page-index-jun8-latest-promotions .btn-inline:hover {
    background-color: #000066;
}

/* Featured Promotions Cards */
.page-index-jun8-latest-promotions .promotion-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
}

.page-index-jun8-latest-promotions .promotion-card.reverse {
    flex-direction: row-reverse;
}

.page-index-jun8-latest-promotions .promotion-card .card-image {
    flex: 1;
    min-width: 40%;
    height: 350px;
    object-fit: cover;
}

.page-index-jun8-latest-promotions .promotion-card .card-content {
    flex: 1;
    padding: 30px;
}

.page-index-jun8-latest-promotions .promotion-card .card-title {
    font-size: 2em;
    color: #000080;
    margin-bottom: 15px;
}

.page-index-jun8-latest-promotions .promotion-card .card-description {
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.page-index-jun8-latest-promotions .promotion-card .card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-index-jun8-latest-promotions .promotion-card .card-features li {
    margin-bottom: 8px;
    color: #333;
    display: flex;
    align-items: center;
}

.page-index-jun8-latest-promotions .promotion-card .card-features li .icon-check {
    color: #FFD700;
    margin-right: 10px;
    font-weight: bold; /* Placeholder for actual icon */
}

.page-index-jun8-latest-promotions .promotion-card .btn-primary {
    background-color: #FFD700;
    color: #000080;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-index-jun8-latest-promotions .promotion-card .btn-primary:hover {
    background-color: #e6c200;
}

/* Why Jun8 Section */
.page-index-jun8-latest-promotions .why-jun8-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-index-jun8-latest-promotions .why-jun8-item {
    background-color: #000080;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-jun8-latest-promotions .why-jun8-item i {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 15px;
    /* Placeholder for actual icons */
    display: block;
    height: 48px; /* Ensure icon placeholder has height */
    width: 48px; /* Ensure icon placeholder has width */
    margin-left: auto;
    margin-right: auto;
}

.page-index-jun8-latest-promotions .why-jun8-item i.icon-security::before { content: '🔒'; }
.page-index-jun8-latest-promotions .why-jun8-item i.icon-game-diversity::before { content: '🎲'; }
.page-index-jun8-latest-promotions .why-jun8-item i.icon-support::before { content: '📞'; }
.page-index-jun8-latest-promotions .why-jun8-item i.icon-fast-transaction::before { content: '⚡'; }

.page-index-jun8-latest-promotions .why-jun8-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #FFD700;
}

.page-index-jun8-latest-promotions .why-jun8-item p {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.page-index-jun8-latest-promotions .faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-index-jun8-latest-promotions .faq-question {
    font-size: 1.3em;
    color: #000080;
    padding: 20px;
    cursor: pointer;
    position: relative;
    margin: 0;
    background-color: #f0f0f0;
}

.page-index-jun8-latest-promotions .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-index-jun8-latest-promotions .faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.page-index-jun8-latest-promotions .faq-answer {
    padding: 0 20px 20px;
    color: #555;
    display: none;
    text-align: justify;
}

.page-index-jun8-latest-promotions .faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.page-index-jun8-latest-promotions .cta-section {
    background-color: #000080;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-index-jun8-latest-promotions .cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-index-jun8-latest-promotions .cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-index-jun8-latest-promotions .btn-large {
    padding: 18px 35px;
    font-size: 1.3em;
    background-color: #FFD700;
    color: #000080;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-jun8-latest-promotions .btn-large:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-jun8-latest-promotions .hero-title {
        font-size: 2.8em;
    }
    .page-index-jun8-latest-promotions .section-title {
        font-size: 2em;
    }
    .page-index-jun8-latest-promotions .promotion-card {
        flex-direction: column;
    }
    .page-index-jun8-latest-promotions .promotion-card.reverse {
        flex-direction: column;
    }
    .page-index-jun8-latest-promotions .promotion-card .card-image {
        height: 250px;
        min-width: 100%;
    }
    .page-index-jun8-latest-promotions .promotion-card .card-content {
        padding: 20px;
    }
    .page-index-jun8-latest-promotions .promotion-card .card-title {
        font-size: 1.8em;
    }
    .page-index-jun8-latest-promotions .cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-index-jun8-latest-promotions .hero-title {
        font-size: 2.2em;
    }
    .page-index-jun8-latest-promotions .hero-description {
        font-size: 1em;
    }
    .page-index-jun8-latest-promotions .hero-actions .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-jun8-latest-promotions .section-title {
        font-size: 1.8em;
    }
    .page-index-jun8-latest-promotions .promotion-grid {
        grid-template-columns: 1fr;
    }
    .page-index-jun8-latest-promotions .steps-list li {
        padding: 20px;
    }
    .page-index-jun8-latest-promotions .step-title {
        font-size: 1.5em;
    }
    .page-index-jun8-latest-promotions .why-jun8-grid {
        grid-template-columns: 1fr;
    }
    .page-index-jun8-latest-promotions .cta-title {
        font-size: 2em;
    }
    .page-index-jun8-latest-promotions .btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-index-jun8-latest-promotions .hero-title {
        font-size: 1.8em;
    }
    .page-index-jun8-latest-promotions .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .page-index-jun8-latest-promotions .hero-actions .btn {
        margin: 0;
    }
    .page-index-jun8-latest-promotions .section-title {
        font-size: 1.5em;
    }
    .page-index-jun8-latest-promotions .promotion-card .card-title {
        font-size: 1.5em;
    }
    .page-index-jun8-latest-promotions .cta-title {
        font-size: 1.8em;
    }
}