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

:root {
    --shbet-primary-blue: #0056B3;
    --shbet-accent-gold: #FFC107;
    --shbet-dark-text: #333333;
    --shbet-light-text: #ffffff;
    --shbet-grey-bg: #f5f5f5;
    --shbet-dark-grey: #666666;
}

.page-promotions-shbet-limited-time-offers {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--shbet-dark-text);
    background-color: var(--shbet-grey-bg);
}

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

.page-promotions-shbet-limited-time-offers__hero-section {
    background: linear-gradient(135deg, var(--shbet-primary-blue) 0%, #003f80 100%);
    color: var(--shbet-light-text);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.page-promotions-shbet-limited-time-offers__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--shbet-light-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-shbet-limited-time-offers__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-promotions-shbet-limited-time-offers__hero-button {
    display: inline-block;
    background-color: var(--shbet-accent-gold);
    color: var(--shbet-primary-blue);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-shbet-limited-time-offers__hero-image {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: auto;
    opacity: 0.2;
    z-index: 0;
    filter: grayscale(100%);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.page-promotions-shbet-limited-time-offers__section-title {
    font-size: 2.5em;
    color: var(--shbet-primary-blue);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-shbet-limited-time-offers__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--shbet-dark-grey);
}

.page-promotions-shbet-limited-time-offers__offers-overview {
    padding: 60px 0;
    background-color: var(--shbet-light-text);
}

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

.page-promotions-shbet-limited-time-offers__offer-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-promotions-shbet-limited-time-offers__offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-shbet-limited-time-offers__offer-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-promotions-shbet-limited-time-offers__card-title {
    font-size: 1.5em;
    color: var(--shbet-primary-blue);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-shbet-limited-time-offers__card-text {
    color: var(--shbet-dark-grey);
    margin-bottom: 20px;
    font-size: 0.95em;
}

.page-promotions-shbet-limited-time-offers__card-button {
    display: inline-block;
    background-color: var(--shbet-accent-gold);
    color: var(--shbet-primary-blue);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-shbet-limited-time-offers__card-button:hover {
    background-color: #e0ac00;
    transform: translateY(-2px);
}

.page-promotions-shbet-limited-time-offers__featured-offers {
    padding: 80px 0;
    background-color: var(--shbet-grey-bg);
}

.page-promotions-shbet-limited-time-offers__offer-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    overflow: hidden;
}

.page-promotions-shbet-limited-time-offers__offer-item--reverse {
    flex-direction: row-reverse;
}

.page-promotions-shbet-limited-time-offers__item-content {
    flex: 1;
    padding: 40px;
    min-width: 300px;
}

.page-promotions-shbet-limited-time-offers__item-image {
    flex: 1;
    min-width: 300px;
    max-height: 400px;
    object-fit: cover;
}

.page-promotions-shbet-limited-time-offers__item-title {
    font-size: 2em;
    color: var(--shbet-primary-blue);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-shbet-limited-time-offers__item-text {
    font-size: 1.05em;
    color: var(--shbet-dark-text);
    margin-bottom: 25px;
}

.page-promotions-shbet-limited-time-offers__item-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-promotions-shbet-limited-time-offers__item-features li {
    margin-bottom: 10px;
    font-size: 1em;
    color: var(--shbet-dark-text);
    display: flex;
    align-items: center;
}

.page-promotions-shbet-limited-time-offers__feature-icon {
    color: var(--shbet-accent-gold);
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 10px;
}

.page-promotions-shbet-limited-time-offers__item-button {
    display: inline-block;
    background-color: var(--shbet-primary-blue);
    color: var(--shbet-light-text);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-shbet-limited-time-offers__item-button:hover {
    background-color: #003f80;
    transform: translateY(-3px);
}

.page-promotions-shbet-limited-time-offers__how-to-claim {
    padding: 80px 0;
    background-color: var(--shbet-light-text);
}

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

.page-promotions-shbet-limited-time-offers__step-card {
    background-color: #fcfcfc;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
    border-top: 5px solid var(--shbet-accent-gold);
    position: relative;
    transition: box-shadow 0.3s ease;
}

.page-promotions-shbet-limited-time-offers__step-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-promotions-shbet-limited-time-offers__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--shbet-primary-blue);
    color: var(--shbet-light-text);
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-shbet-limited-time-offers__process-image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 60px auto 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-promotions-shbet-limited-time-offers__why-shbet {
    padding: 80px 0;
    background-color: var(--shbet-grey-bg);
}

.page-promotions-shbet-limited-time-offers__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-promotions-shbet-limited-time-offers__benefits-list li {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    font-size: 1.05em;
    color: var(--shbet-dark-text);
    transition: transform 0.2s ease;
}

.page-promotions-shbet-limited-time-offers__benefits-list li:hover {
    transform: translateY(-5px);
}

.page-promotions-shbet-limited-time-offers__benefit-icon {
    color: var(--shbet-accent-gold);
    font-size: 1.5em;
    margin-right: 15px;
    font-weight: bold;
}

.page-promotions-shbet-limited-time-offers__why-shbet-image {
    display: block;
    max-width: 90%;
    height: auto;
    margin: 60px auto 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-promotions-shbet-limited-time-offers__responsible-gaming {
    padding: 80px 0;
    background-color: var(--shbet-primary-blue);
    color: var(--shbet-light-text);
    text-align: center;
}

.page-promotions-shbet-limited-time-offers__responsible-gaming .page-promotions-shbet-limited-time-offers__section-title,
.page-promotions-shbet-limited-time-offers__responsible-gaming .page-promotions-shbet-limited-time-offers__section-description {
    color: var(--shbet-light-text);
}

.page-promotions-shbet-limited-time-offers__responsible-tips {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.page-promotions-shbet-limited-time-offers__responsible-tips li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    font-size: 1.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-shbet-limited-time-offers__tip-icon {
    color: var(--shbet-accent-gold);
    font-size: 1.5em;
    margin-right: 10px;
}

.page-promotions-shbet-limited-time-offers__responsible-button {
    display: inline-block;
    background-color: var(--shbet-accent-gold);
    color: var(--shbet-primary-blue);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 40px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-shbet-limited-time-offers__responsible-button:hover {
    background-color: #e0ac00;
    transform: translateY(-3px);
}

.page-promotions-shbet-limited-time-offers__responsible-image {
    display: block;
    max-width: 70%;
    height: auto;
    margin: 60px auto 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-promotions-shbet-limited-time-offers__faq {
    padding: 80px 0;
    background-color: var(--shbet-light-text);
}

.page-promotions-shbet-limited-time-offers__faq-item {
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-shbet-limited-time-offers__faq-question {
    font-size: 1.3em;
    color: var(--shbet-primary-blue);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.page-promotions-shbet-limited-time-offers__faq-question::after {
    content: '+';
    font-size: 1.2em;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.page-promotions-shbet-limited-time-offers__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-shbet-limited-time-offers__faq-answer {
    font-size: 1em;
    color: var(--shbet-dark-text);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: none;
}

.page-promotions-shbet-limited-time-offers__faq-answer.active {
    display: block;
}

.page-promotions-shbet-limited-time-offers__cta-section {
    background: linear-gradient(45deg, #003f80 0%, var(--shbet-primary-blue) 100%);
    color: var(--shbet-light-text);
    padding: 80px 0;
    text-align: center;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    position: relative;
    overflow: hidden;
}

.page-promotions-shbet-limited-time-offers__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--shbet-light-text);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.page-promotions-shbet-limited-time-offers__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-promotions-shbet-limited-time-offers__cta-button {
    display: inline-block;
    background-color: var(--shbet-accent-gold);
    color: var(--shbet-primary-blue);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-shbet-limited-time-offers__cta-button:hover {
    background-color: #e0ac00;
    transform: translateY(-5px) scale(1.02);
}

.page-promotions-shbet-limited-time-offers__cta-image {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 350px;
    height: auto;
    opacity: 0.15;
    z-index: 0;
    filter: grayscale(100%);
    animation: rotateImage 10s linear infinite;
}

@keyframes rotateImage {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-shbet-limited-time-offers__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-shbet-limited-time-offers__section-title {
        font-size: 2em;
    }
    .page-promotions-shbet-limited-time-offers__item-title {
        font-size: 1.8em;
    }
    .page-promotions-shbet-limited-time-offers__offer-item,
    .page-promotions-shbet-limited-time-offers__offer-item--reverse {
        flex-direction: column;
    }
    .page-promotions-shbet-limited-time-offers__item-image {
        width: 100%;
        height: auto;
    }
    .page-promotions-shbet-limited-time-offers__hero-image,
    .page-promotions-shbet-limited-time-offers__cta-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-promotions-shbet-limited-time-offers__hero-section,
    .page-promotions-shbet-limited-time-offers__offers-overview,
    .page-promotions-shbet-limited-time-offers__featured-offers,
    .page-promotions-shbet-limited-time-offers__how-to-claim,
    .page-promotions-shbet-limited-time-offers__why-shbet,
    .page-promotions-shbet-limited-time-offers__responsible-gaming,
    .page-promotions-shbet-limited-time-offers__faq,
    .page-promotions-shbet-limited-time-offers__cta-section {
        padding: 40px 0;
    }
    .page-promotions-shbet-limited-time-offers__hero-title {
        font-size: 2em;
    }
    .page-promotions-shbet-limited-time-offers__hero-description {
        font-size: 1em;
    }
    .page-promotions-shbet-limited-time-offers__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-shbet-limited-time-offers__section-title {
        font-size: 1.8em;
    }
    .page-promotions-shbet-limited-time-offers__section-description {
        font-size: 0.95em;
    }
    .page-promotions-shbet-limited-time-offers__item-title {
        font-size: 1.5em;
    }
    .page-promotions-shbet-limited-time-offers__item-content {
        padding: 30px;
    }
    .page-promotions-shbet-limited-time-offers__cta-title {
        font-size: 2.2em;
    }
    .page-promotions-shbet-limited-time-offers__cta-description {
        font-size: 1em;
    }
    .page-promotions-shbet-limited-time-offers__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions-shbet-limited-time-offers__process-image,
    .page-promotions-shbet-limited-time-offers__why-shbet-image,
    .page-promotions-shbet-limited-time-offers__responsible-image {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .page-promotions-shbet-limited-time-offers__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-shbet-limited-time-offers__section-title {
        font-size: 1.6em;
    }
    .page-promotions-shbet-limited-time-offers__item-title {
        font-size: 1.3em;
    }
    .page-promotions-shbet-limited-time-offers__item-text {
        font-size: 0.9em;
    }
    .page-promotions-shbet-limited-time-offers__cta-title {
        font-size: 1.8em;
    }
    .page-promotions-shbet-limited-time-offers__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}