.page-index-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A1931; /* Primary dark background */
    line-height: 1.6;
}

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

.page-index-latest-promotions-hero-section {
    background: linear-gradient(135deg, #0A1931 0%, #2A3B5B 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions-hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: #FFD700;
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
}

.page-index-latest-promotions-hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: #FFD700;
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(100px);
}

.page-index-latest-promotions-main-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.page-index-latest-promotions-cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    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: #E6C200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-index-latest-promotions-section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

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

.page-index-latest-promotions-intro-section,
.page-index-latest-promotions-types-section,
.page-index-latest-promotions-how-to-claim-section,
.page-index-latest-promotions-why-choose-section,
.page-index-latest-promotions-responsible-gambling-section,
.page-index-latest-promotions-faq-section,
.page-index-latest-promotions-final-call-to-action {
    padding: 80px 0;
}

.page-index-latest-promotions-intro-section .page-index-latest-promotions-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-index-latest-promotions-intro-section .page-index-latest-promotions-text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-index-latest-promotions-intro-section .page-index-latest-promotions-image-wrapper {
    text-align: center;
}

.page-index-latest-promotions-intro-section .page-index-latest-promotions-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-index-latest-promotions-promo-card {
    background-color: #1A2A44; /* Slightly lighter dark blue for cards */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-index-latest-promotions-card-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: brightness(0.9) contrast(1.1);
}

.page-index-latest-promotions-card-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-latest-promotions-card-text {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 25px;
}

.page-index-latest-promotions-card-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A1931;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
    border: none;
}

.page-index-latest-promotions-card-button:hover {
    background-color: #E6C200;
}

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

.page-index-latest-promotions-step-card {
    background-color: #1A2A44;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-latest-promotions-step-number {
    font-size: 3em;
    color: rgba(255, 215, 0, 0.3);
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 0;
}

.page-index-latest-promotions-step-card h3,
.page-index-latest-promotions-step-card p,
.page-index-latest-promotions-step-card img {
    position: relative;
    z-index: 1;
}

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

.page-index-latest-promotions-step-text {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 20px;
}

.page-index-latest-promotions-step-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-index-latest-promotions-step-text a:hover {
    text-decoration: underline;
}

.page-index-latest-promotions-step-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-top: 15px;
    filter: brightness(0.9);
}

.page-index-latest-promotions-final-cta {
    text-align: center;
    margin-top: 60px;
}

.page-index-latest-promotions-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-index-latest-promotions-why-item {
    background-color: #1A2A44;
    border-left: 5px solid #FFD700;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

.page-index-latest-promotions-why-item-text {
    font-size: 1em;
    color: #C0C0C0;
}

.page-index-latest-promotions-support-image {
    display: block;
    max-width: 800px;
    margin: 40px auto 0 auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(0.9);
}

.page-index-latest-promotions-responsible-gambling-section {
    background-color: #0A1931;
    padding: 80px 0;
    text-align: center;
}

.page-index-latest-promotions-responsible-gambling-section p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
    color: #C0C0C0;
}

.page-index-latest-promotions-responsible-link {
    display: inline-block;
    margin-top: 20px;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    padding-bottom: 5px;
    border-bottom: 2px solid #FFD700;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-index-latest-promotions-responsible-link:hover {
    color: #E6C200;
    border-color: #E6C200;
}

.page-index-latest-promotions-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-latest-promotions-accordion-item {
    background-color: #1A2A44;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-latest-promotions-accordion-header {
    background-color: #2A3B5B; /* Slightly lighter dark blue for header */
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.page-index-latest-promotions-accordion-header::after {
    content: '\25B6'; /* Right arrow */
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-index-latest-promotions-accordion-header.active::after {
    content: '\25BC'; /* Down arrow */
    transform: rotate(90deg);
}

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

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

.page-index-latest-promotions-accordion-content.active {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px;
}

.page-index-latest-promotions-final-call-to-action {
    text-align: center;
    padding: 100px 0;
    background-color: #0A1931;
}

.page-index-latest-promotions-final-call-to-action .page-index-latest-promotions-section-title {
    margin-bottom: 20px;
}

.page-index-latest-promotions-action-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-latest-promotions-secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #FFD700;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-index-latest-promotions-secondary-button:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-promotions-intro-section .page-index-latest-promotions-content-grid {
        grid-template-columns: 1fr;
    }

    .page-index-latest-promotions-intro-section .page-index-latest-promotions-image-wrapper {
        order: -1; /* Image appears above text on smaller screens */
        margin-bottom: 30px;
    }

    .page-index-latest-promotions-main-title {
        font-size: 2.8em;
    }

    .page-index-latest-promotions-subtitle {
        font-size: 1.3em;
    }

    .page-index-latest-promotions-section-title {
        font-size: 2em;
    }

    .page-index-latest-promotions-promo-grid,
    .page-index-latest-promotions-steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions-hero-section {
        padding: 80px 0;
    }

    .page-index-latest-promotions-main-title {
        font-size: 2.2em;
    }

    .page-index-latest-promotions-subtitle {
        font-size: 1.1em;
    }

    .page-index-latest-promotions-cta-button,
    .page-index-latest-promotions-secondary-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-index-latest-promotions-intro-section,
    .page-index-latest-promotions-types-section,
    .page-index-latest-promotions-how-to-claim-section,
    .page-index-latest-promotions-why-choose-section,
    .page-index-latest-promotions-responsible-gambling-section,
    .page-index-latest-promotions-faq-section,
    .page-index-latest-promotions-final-call-to-action {
        padding: 60px 0;
    }

    .page-index-latest-promotions-section-title {
        font-size: 1.8em;
    }

    .page-index-latest-promotions-promo-card,
    .page-index-latest-promotions-step-card {
        padding: 25px;
    }

    .page-index-latest-promotions-card-title,
    .page-index-latest-promotions-step-title {
        font-size: 1.5em;
    }

    .page-index-latest-promotions-action-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions-main-title {
        font-size: 1.8em;
    }

    .page-index-latest-promotions-subtitle {
        font-size: 1em;
    }

    .page-index-latest-promotions-cta-button,
    .page-index-latest-promotions-secondary-button {
        width: 100%;
        max-width: 300px;
    }

    .page-index-latest-promotions-section-title {
        font-size: 1.5em;
    }

    .page-index-latest-promotions-promo-grid,
    .page-index-latest-promotions-steps-grid {
        grid-template-columns: 1fr;
    }
}