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

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

.page-index-latest-promotions-entrance__hero {
    background: linear-gradient(135deg, #1E90FF, #0028ff);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-index-latest-promotions-entrance__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-index-latest-promotions-entrance__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold text on blue background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions-entrance__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-index-latest-promotions-entrance__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    max-width: 800px;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.page-index-latest-promotions-entrance__section {
    padding: 60px 0;
    text-align: center;
}

.page-index-latest-promotions-entrance__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-index-latest-promotions-entrance__section-title {
    font-size: 2.5em;
    color: #1E90FF;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-index-latest-promotions-entrance__text-block {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
    color: #555;
}

.page-index-latest-promotions-entrance__features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-index-latest-promotions-entrance__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
    transition: transform 0.3s ease;
}

.page-index-latest-promotions-entrance__feature-item:hover {
    transform: translateY(-10px);
}

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

.page-index-latest-promotions-entrance__feature-item p {
    color: #666;
    font-size: 1em;
}

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

.page-index-latest-promotions-entrance__promo-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.page-index-latest-promotions-entrance__promo-card:hover {
    transform: translateY(-10px);
}

.page-index-latest-promotions-entrance__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-index-latest-promotions-entrance__promo-card-title {
    font-size: 1.5em;
    color: #1E90FF;
    margin: 20px 20px 10px 20px;
    font-weight: bold;
}

.page-index-latest-promotions-entrance__promo-card-description {
    color: #666;
    font-size: 1em;
    padding: 0 20px 20px 20px;
}

.page-index-latest-promotions-entrance__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
    border: none;
}

.page-index-latest-promotions-entrance__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #333; /* Dark text for contrast */
}

.page-index-latest-promotions-entrance__btn--primary:hover {
    background-color: #e6c200;
    color: #000;
}

.page-index-latest-promotions-entrance__btn--secondary {
    background-color: #1E90FF; /* Blue button */
    color: #fff; /* White text for contrast */
    margin: 0 20px 20px 20px;
}

.page-index-latest-promotions-entrance__btn--secondary:hover {
    background-color: #1565b3;
}

.page-index-latest-promotions-entrance__how-to-claim .page-index-latest-promotions-entrance__text-block,
.page-index-latest-promotions-entrance__responsible-gaming .page-index-latest-promotions-entrance__text-block {
    text-align: left;
}

.page-index-latest-promotions-entrance__steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-index-latest-promotions-entrance__steps li {
    background-color: #fff;
    margin-bottom: 25px;
    padding: 25px 30px 25px 70px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: left;
}

.page-index-latest-promotions-entrance__steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #333;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-index-latest-promotions-entrance__steps li h3 {
    font-size: 1.4em;
    color: #1E90FF;
    margin-bottom: 10px;
}

.page-index-latest-promotions-entrance__steps li p {
    color: #555;
}

.page-index-latest-promotions-entrance__link {
    color: #1E90FF;
    text-decoration: none;
    font-weight: bold;
}

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

.page-index-latest-promotions-entrance__note {
    font-style: italic;
    color: #777;
    margin-top: 30px;
}

.page-index-latest-promotions-entrance__faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-index-latest-promotions-entrance__faq-question {
    font-size: 1.3em;
    color: #1E90FF;
    margin-bottom: 10px;
}

.page-index-latest-promotions-entrance__faq-answer {
    color: #555;
    font-size: 1em;
}

.page-index-latest-promotions-entrance__cta-bottom {
    background-color: #FFD700; /* Gold background */
    color: #333; /* Dark text for contrast */
    padding: 80px 0;
    text-align: center;
}

.page-index-latest-promotions-entrance__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #1565b3; /* Darker blue for contrast */
}

.page-index-latest-promotions-entrance__cta-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-index-latest-promotions-entrance__hero {
        padding: 60px 0;
        min-height: 400px;
    }

    .page-index-latest-promotions-entrance__hero-title {
        font-size: 2.5em;
    }

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

    .page-index-latest-promotions-entrance__hero-image {
        width: 80%;
        right: -20%;
    }

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

    .page-index-latest-promotions-entrance__features {
        flex-direction: column;
        align-items: center;
    }

    .page-index-latest-promotions-entrance__feature-item {
        max-width: 100%;
    }

    .page-index-latest-promotions-entrance__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-index-latest-promotions-entrance__steps li {
        padding: 20px 20px 20px 60px;
    }

    .page-index-latest-promotions-entrance__steps li::before {
        left: 15px;
        width: 30px;
        height: 30px;
        font-size: 1em;
    }

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

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

@media (max-width: 480px) {
    .page-index-latest-promotions-entrance__hero {
        padding: 40px 0;
        min-height: 300px;
    }

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

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

    .page-index-latest-promotions-entrance__hero-image {
        width: 100%;
        right: -30%;
    }

    .page-index-latest-promotions-entrance__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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

    .page-index-latest-promotions-entrance__text-block {
        font-size: 0.95em;
    }

    .page-index-latest-promotions-entrance__feature-title {
        font-size: 1.4em;
    }

    .page-index-latest-promotions-entrance__promo-card-title {
        font-size: 1.3em;
    }

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

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