/* style/promotions-limited-time-offers.css */

.page-promotions-limited-time-offers {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
    line-height: 1.6;
}

.page-promotions-limited-time-offers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-limited-time-offers__hero {
    background: linear-gradient(135deg, #CC0000 0%, #800000 100%); /* Darker red for depth */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-promotions-limited-time-offers__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions-limited-time-offers__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-limited-time-offers__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-promotions-limited-time-offers__hero-cta {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #CC0000; /* Red text */
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-limited-time-offers__hero-cta:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-promotions-limited-time-offers__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-promotions-limited-time-offers__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-promotions-limited-time-offers__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions-limited-time-offers__intro,
.page-promotions-limited-time-offers__categories,
.page-promotions-limited-time-offers__how-to-claim,
.page-promotions-limited-time-offers__why-mcw88,
.page-promotions-limited-time-offers__responsible-gaming,
.page-promotions-limited-time-offers__cta-final {
    padding: 60px 0;
    background-color: #222222;
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-promotions-limited-time-offers__intro {
    background-color: #1a1a1a;
    padding-bottom: 0;
}

.page-promotions-limited-time-offers__text-content {
    font-size: 1.1em;
    color: #cccccc;
    text-align: justify;
    margin-bottom: 20px;
}

.page-promotions-limited-time-offers__text-content a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-limited-time-offers__text-content a:hover {
    text-decoration: underline;
}

.page-promotions-limited-time-offers__button {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    background-color: #CC0000; /* Red button */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-offers__button:hover {
    background-color: #a30000; /* Darker red */
    transform: translateY(-2px);
}

.page-promotions-limited-time-offers__button--large {
    padding: 20px 45px;
    font-size: 1.3em;
    border-radius: 40px;
}

.page-promotions-limited-time-offers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-limited-time-offers__card {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-limited-time-offers__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-promotions-limited-time-offers__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-limited-time-offers__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-limited-time-offers__card-description {
    font-size: 1em;
    color: #bbbbbb;
    margin-bottom: 25px;
}

.page-promotions-limited-time-offers__card-cta {
    display: inline-block;
    background-color: #FFD700;
    color: #CC0000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promotions-limited-time-offers__card-cta:hover {
    background-color: #e6c200;
}

.page-promotions-limited-time-offers__how-to-claim {
    background-color: #1a1a1a;
}

.page-promotions-limited-time-offers__steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-limited-time-offers__steps li {
    background-color: #2a2a2a;
    border-left: 5px solid #CC0000;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-limited-time-offers__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-limited-time-offers__steps p {
    color: #cccccc;
    font-size: 1.05em;
}

.page-promotions-limited-time-offers__steps p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-limited-time-offers__steps p a:hover {
    text-decoration: underline;
}

.page-promotions-limited-time-offers__why-mcw88 {
    background-color: #222222;
}

.page-promotions-limited-time-offers__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-limited-time-offers__list li {
    background-color: #2a2a2a;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
    color: #cccccc;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-offers__list li strong {
    color: #FFD700;
    font-weight: bold;
}

.page-promotions-limited-time-offers__responsible-gaming {
    background-color: #1a1a1a;
    text-align: center;
    border-top: 1px solid #333333;
    padding-bottom: 0;
}

.page-promotions-limited-time-offers__responsible-gaming .page-promotions-limited-time-offers__section-title {
    font-size: 2.2em;
    margin-bottom: 20px;
    padding-top: 0;
}

.page-promotions-limited-time-offers__responsible-gaming .page-promotions-limited-time-offers__text-content {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.page-promotions-limited-time-offers__cta-final {
    background-color: #CC0000; /* Main brand color */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 0;
}

.page-promotions-limited-time-offers__cta-final .page-promotions-limited-time-offers__section-title {
    color: #FFD700;
    font-size: 3em;
    margin-bottom: 25px;
    padding-top: 0;
}

.page-promotions-limited-time-offers__cta-final .page-promotions-limited-time-offers__text-content {
    color: #f0f0f0;
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-promotions-limited-time-offers__cta-final .page-promotions-limited-time-offers__text-content a {
    color: #FFD700;
    font-weight: bold;
}

.page-promotions-limited-time-offers__cta-final .page-promotions-limited-time-offers__text-content a:hover {
    text-decoration: underline;
}

/* Highlight text within content */
.page-promotions-limited-time-offers .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-limited-time-offers__hero-title {
        font-size: 3em;
    }
    .page-promotions-limited-time-offers__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-limited-time-offers__section-title {
        font-size: 2.2em;
    }
    .page-promotions-limited-time-offers__cta-final .page-promotions-limited-time-offers__section-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-limited-time-offers__hero {
        padding: 60px 0;
        min-height: 350px;
    }
    .page-promotions-limited-time-offers__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-limited-time-offers__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-limited-time-offers__hero-cta {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions-limited-time-offers__section-title {
        font-size: 2em;
        margin-bottom: 30px;
        padding-top: 40px;
    }
    .page-promotions-limited-time-offers__intro,
    .page-promotions-limited-time-offers__categories,
    .page-promotions-limited-time-offers__how-to-claim,
    .page-promotions-limited-time-offers__why-mcw88,
    .page-promotions-limited-time-offers__responsible-gaming,
    .page-promotions-limited-time-offers__cta-final {
        padding: 40px 0;
    }
    .page-promotions-limited-time-offers__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-limited-time-offers__card {
        padding: 25px;
    }
    .page-promotions-limited-time-offers__card-title {
        font-size: 1.5em;
    }
    .page-promotions-limited-time-offers__steps li {
        padding: 20px 25px;
    }
    .page-promotions-limited-time-offers__step-title {
        font-size: 1.4em;
    }
    .page-promotions-limited-time-offers__list li {
        padding: 15px;
        font-size: 1em;
    }
    .page-promotions-limited-time-offers__cta-final .page-promotions-limited-time-offers__section-title {
        font-size: 2em;
    }
    .page-promotions-limited-time-offers__button--large {
        padding: 18px 35px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions-limited-time-offers__hero-title {
        font-size: 2em;
    }
    .page-promotions-limited-time-offers__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-limited-time-offers__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-limited-time-offers__section-title {
        font-size: 1.8em;
        padding-top: 30px;
    }
    .page-promotions-limited-time-offers__text-content {
        font-size: 0.95em;
    }
    .page-promotions-limited-time-offers__card-title {
        font-size: 1.3em;
    }
    .page-promotions-limited-time-offers__step-title {
        font-size: 1.2em;
    }
    .page-promotions-limited-time-offers__cta-final .page-promotions-limited-time-offers__section-title {
        font-size: 1.8em;
    }
    .page-promotions-limited-time-offers__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}