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

:root {
    --kkwin-primary: #0A246A;
    --kkwin-secondary: #FFD700;
    --kkwin-text-dark: #333;
    --kkwin-text-light: #f4f4f4;
    --kkwin-background-light: #f9f9f9;
    --kkwin-background-dark: #071a47;
    --kkwin-border-color: #e0e0e0;
}

.page-promotions-limited-time-offers {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--kkwin-text-dark);
    background-color: var(--kkwin-background-light);
    padding-bottom: 50px;
}

.page-promotions-limited-time-offers__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.page-promotions-limited-time-offers__section-title {
    font-size: 2.8em;
    color: var(--kkwin-primary);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-limited-time-offers__section-description {
    font-size: 1.1em;
    color: var(--kkwin-text-dark);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-limited-time-offers__hero {
    background: linear-gradient(135deg, var(--kkwin-primary) 0%, #1A3F87 100%);
    color: var(--kkwin-text-light);
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-limited-time-offers__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-limited-time-offers__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

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

.page-promotions-limited-time-offers__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: var(--kkwin-text-light);
}

.page-promotions-limited-time-offers__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%; /* Adjust size as needed */
    max-width: 600px;
    height: auto;
    z-index: 0;
    opacity: 0.2;
    transform: translateX(20%) translateY(20%);
}

.page-promotions-limited-time-offers__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-promotions-limited-time-offers__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-promotions-limited-time-offers__btn--primary {
    background-color: var(--kkwin-secondary);
    color: var(--kkwin-primary);
    border: 2px solid var(--kkwin-secondary);
}

.page-promotions-limited-time-offers__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-offers__btn--secondary {
    background-color: var(--kkwin-primary);
    color: var(--kkwin-secondary);
    border: 2px solid var(--kkwin-primary);
    padding: 12px 25px;
}

.page-promotions-limited-time-offers__btn--secondary:hover {
    background-color: #071a47;
    border-color: #071a47;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-promotions-limited-time-offers__btn--outline {
    background-color: transparent;
    color: var(--kkwin-secondary);
    border: 2px solid var(--kkwin-secondary);
}

.page-promotions-limited-time-offers__btn--outline:hover {
    background-color: var(--kkwin-secondary);
    color: var(--kkwin-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-offers__btn--text {
    background: none;
    border: none;
    color: var(--kkwin-primary);
    text-decoration: underline;
    padding: 0;
    font-size: 1em;
}

.page-promotions-limited-time-offers__btn--text:hover {
    color: var(--kkwin-secondary);
}

.page-promotions-limited-time-offers__btn--center {
    margin-top: 30px;
}

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

.page-promotions-limited-time-offers__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-limited-time-offers__feature-title {
    font-size: 1.8em;
    color: var(--kkwin-primary);
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-promotions-limited-time-offers__promotion-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions-limited-time-offers__promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-offers__promotion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-promotions-limited-time-offers__promotion-card h3,
.page-promotions-limited-time-offers__promotion-card p,
.page-promotions-limited-time-offers__promotion-card ul {
    padding: 0 25px;
}

.page-promotions-limited-time-offers__promotion-title {
    font-size: 1.6em;
    color: var(--kkwin-primary);
    margin: 20px 0 10px;
    font-weight: bold;
}

.page-promotions-limited-time-offers__promotion-description {
    font-size: 1em;
    color: var(--kkwin-text-dark);
    margin-bottom: 20px;
}

.page-promotions-limited-time-offers__promotion-details {
    list-style: none;
    padding: 0 25px 20px;
    margin: 0;
    font-size: 0.95em;
    color: #666;
}

.page-promotions-limited-time-offers__promotion-details li {
    margin-bottom: 8px;
}

.page-promotions-limited-time-offers__promotion-card .page-promotions-limited-time-offers__btn {
    margin: 25px;
    margin-top: auto; /* Pushes button to the bottom */
    width: calc(100% - 50px);
}

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

.page-promotions-limited-time-offers__how-to-claim .page-promotions-limited-time-offers__section-title {
    color: var(--kkwin-secondary);
}

.page-promotions-limited-time-offers__how-to-claim .page-promotions-limited-time-offers__section-description {
    color: var(--kkwin-text-light);
}

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

.page-promotions-limited-time-offers__step-item {
    background-color: #1A3F87;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.page-promotions-limited-time-offers__step-number {
    background-color: var(--kkwin-secondary);
    color: var(--kkwin-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px;
    border: 3px solid #e6c200;
}

.page-promotions-limited-time-offers__step-item h3 {
    color: var(--kkwin-secondary);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-promotions-limited-time-offers__step-item p {
    color: var(--kkwin-text-light);
    font-size: 1em;
}

.page-promotions-limited-time-offers__step-item a {
    color: var(--kkwin-secondary);
    text-decoration: underline;
}

.page-promotions-limited-time-offers__step-item a:hover {
    color: #fff;
}

.page-promotions-limited-time-offers__responsible-gambling {
    padding: 80px 20px;
    background-color: #fff;
}

.page-promotions-limited-time-offers__responsible-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.page-promotions-limited-time-offers__responsible-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promotions-limited-time-offers__responsible-text {
    text-align: left;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-promotions-limited-time-offers__responsible-text p {
    margin-bottom: 20px;
}

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

.page-promotions-limited-time-offers__faq-list {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.page-promotions-limited-time-offers__faq-item {
    background-color: #fff;
    border: 1px solid var(--kkwin-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-promotions-limited-time-offers__faq-item.active {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-limited-time-offers__faq-question {
    font-size: 1.2em;
    color: var(--kkwin-primary);
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-weight: bold;
}

.page-promotions-limited-time-offers__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-promotions-limited-time-offers__faq-item.active .page-promotions-limited-time-offers__faq-question::after {
    transform: rotate(45deg);
}

.page-promotions-limited-time-offers__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-limited-time-offers__faq-item.active .page-promotions-limited-time-offers__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 0 25px 25px;
}

.page-promotions-limited-time-offers__cta-bottom {
    background: linear-gradient(90deg, var(--kkwin-secondary) 0%, #e6c200 100%);
    color: var(--kkwin-primary);
    padding: 80px 20px;
    text-align: center;
}

.page-promotions-limited-time-offers__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-limited-time-offers__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-limited-time-offers__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 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.2em;
    }
    .page-promotions-limited-time-offers__hero-image-wrapper {
        width: 60%;
        transform: translateX(10%) translateY(10%);
    }
    .page-promotions-limited-time-offers__section-title {
        font-size: 2.2em;
    }
    .page-promotions-limited-time-offers__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-limited-time-offers__hero {
        padding: 80px 20px;
    }
    .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-image-wrapper {
        width: 80%;
        transform: translateX(0%) translateY(0%);
        opacity: 0.1;
    }
    .page-promotions-limited-time-offers__section {
        padding: 40px 15px;
    }
    .page-promotions-limited-time-offers__section-title {
        font-size: 1.8em;
    }
    .page-promotions-limited-time-offers__promotion-grid,
    .page-promotions-limited-time-offers__steps {
        grid-template-columns: 1fr;
    }
    .page-promotions-limited-time-offers__responsible-content {
        flex-direction: column;
    }
    .page-promotions-limited-time-offers__cta-title {
        font-size: 2em;
    }
    .page-promotions-limited-time-offers__cta-description {
        font-size: 1em;
    }
    .page-promotions-limited-time-offers__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-limited-time-offers__btn {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@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__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-limited-time-offers__section-title {
        font-size: 1.5em;
    }
    .page-promotions-limited-time-offers__feature-title {
        font-size: 1.5em;
    }
    .page-promotions-limited-time-offers__promotion-title {
        font-size: 1.4em;
    }
    .page-promotions-limited-time-offers__cta-title {
        font-size: 1.8em;
    }
}