/* style/index-latest-promotions.css */
.page-index-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text */
    background-color: #1A1A1A; /* Dark background */
    line-height: 1.6;
}

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

.page-index-latest-promotions .section-spacing {
    padding: 80px 0;
}

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

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

.page-index-latest-promotions .hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F0F0F0;
}

.page-index-latest-promotions .cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions .primary-button {
    background-color: #FF0055;
    color: #FFFFFF;
    border: 2px solid #FF0055;
}

.page-index-latest-promotions .primary-button:hover {
    background-color: #E0004C;
    border-color: #E0004C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions .secondary-button {
    background-color: transparent;
    color: #00FFEE;
    border: 2px solid #00FFEE;
}

.page-index-latest-promotions .secondary-button:hover {
    background-color: #00FFEE;
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-index-latest-promotions .section-title {
    font-size: 2.8em;
    color: #FF0055;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions .section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-index-latest-promotions .bg-dark {
    background-color: #222222;
}

/* Promotions Grid */
.page-index-latest-promotions .promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-latest-promotions .promotion-card {
    background-color: #2A2A2A;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-index-latest-promotions .promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-index-latest-promotions .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #00FFEE;
}

.page-index-latest-promotions .promotion-card .card-title {
    font-size: 1.8em;
    color: #FF0055;
    padding: 20px 20px 10px;
    font-weight: bold;
}

.page-index-latest-promotions .promotion-card .card-text {
    font-size: 1em;
    color: #C0C0C0;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-index-latest-promotions .promotion-card .card-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 20px;
    background-color: #00FFEE;
    color: #1A1A1A;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-index-latest-promotions .promotion-card .card-button:hover {
    background-color: #00B3A7;
    color: #FFFFFF;
}

/* How-To-Claim Section */
.page-index-latest-promotions .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.page-index-latest-promotions .step-item {
    background-color: #333333;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-latest-promotions .step-number {
    font-size: 3em;
    color: #FF0055;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.page-index-latest-promotions .step-title {
    font-size: 1.8em;
    color: #00FFEE;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-latest-promotions .step-text {
    color: #C0C0C0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-latest-promotions .step-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #FF0055;
    color: #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-index-latest-promotions .step-button:hover {
    background-color: #E0004C;
}

/* Why Choose Section */
.page-index-latest-promotions .feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-index-latest-promotions .feature-list li {
    background-color: #2A2A2A;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.page-index-latest-promotions .feature-list .icon {
    font-size: 2.5em;
    color: #00FFEE;
    line-height: 1;
}

.page-index-latest-promotions .feature-list .feature-title {
    font-size: 1.5em;
    color: #FF0055;
    margin: 0 0 10px 0;
}

.page-index-latest-promotions .feature-list p {
    color: #C0C0C0;
    font-size: 0.95em;
}

.page-index-latest-promotions .section-image {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 50px auto 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Terms & Conditions Section (Accordion) */
.page-index-latest-promotions .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-latest-promotions .accordion-item {
    margin-bottom: 15px;
    background-color: #333333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions .accordion-header {
    background-color: #FF0055;
    color: #FFFFFF;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-index-latest-promotions .accordion-header:hover {
    background-color: #E0004C;
}

.page-index-latest-promotions .accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-index-latest-promotions .accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-latest-promotions .accordion-content {
    padding: 0 25px;
    background-color: #2A2A2A;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-latest-promotions .accordion-content.open {
    max-height: 300px; /* Adjust as needed for content height */
    padding: 20px 25px;
}

.page-index-latest-promotions .accordion-content p {
    color: #C0C0C0;
    font-size: 1em;
    margin: 0;
}

.page-index-latest-promotions .read-more-text {
    text-align: center;
    margin-top: 30px;
    font-size: 1em;
    color: #B0B0B0;
}

/* Responsible Gaming Section */
.page-index-latest-promotions .responsible-gaming-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.page-index-latest-promotions .responsible-gaming-image {
    flex: 1 1 400px;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-index-latest-promotions .responsible-gaming-list {
    flex: 1 1 400px;
    list-style: none;
    padding: 0;
}

.page-index-latest-promotions .responsible-gaming-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #C0C0C0;
}

.page-index-latest-promotions .responsible-gaming-list .icon {
    color: #00FFEE;
    font-size: 1.5em;
    margin-right: 15px;
    line-height: 1;
}

.page-index-latest-promotions .responsible-gaming-list p {
    margin: 0;
}

.page-index-latest-promotions .responsible-gaming-cta {
    text-align: center;
    margin-top: 50px;
    font-size: 1.2em;
    color: #FF0055;
    font-weight: bold;
}

/* Call to Action Bottom */
.page-index-latest-promotions .call-to-action-bottom {
    text-align: center;
}

.page-index-latest-promotions .large-button {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-latest-promotions .hero-title {
        font-size: 3em;
    }
    .page-index-latest-promotions .section-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions .hero-section {
        padding: 80px 0;
    }
    .page-index-latest-promotions .hero-title {
        font-size: 2.5em;
    }
    .page-index-latest-promotions .hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-latest-promotions .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-latest-promotions .section-spacing {
        padding: 60px 0;
    }
    .page-index-latest-promotions .section-title {
        font-size: 2em;
    }
    .page-index-latest-promotions .section-description {
        font-size: 1em;
    }
    .page-index-latest-promotions .promotions-grid, 
    .page-index-latest-promotions .steps-grid {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions .card-title, 
    .page-index-latest-promotions .step-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions .feature-list li {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .page-index-latest-promotions .feature-list .icon {
        margin-bottom: 10px;
    }
    .page-index-latest-promotions .responsible-gaming-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions .hero-title {
        font-size: 2em;
    }
    .page-index-latest-promotions .cta-button {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }
    .page-index-latest-promotions .section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions .large-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-index-latest-promotions .accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-index-latest-promotions .accordion-content.open {
        padding: 15px 20px;
    }
}