/* style/promotions-dt68-exclusive-details.css */

:root {
    --dt68-primary-color: #007BFF;
    --dt68-secondary-color: #FFD700;
    --dt68-dark-bg: #1a1a2e; /* Darker background for better contrast */
    --dt68-text-light: #f0f2f5;
    --dt68-text-dark: #333;
    --dt68-accent-orange: #ff8400;
    --dt68-accent-blue: #0028ff;
    --dt68-card-bg: #2a2a4a;
}

.page-promotions-dt68-exclusive-details {
    font-family: 'Arial', sans-serif;
    color: var(--dt68-text-light);
    background-color: var(--dt68-dark-bg);
    line-height: 1.6;
}

.page-promotions-dt68-exclusive-details__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-dt68-exclusive-details__hero {
    background: linear-gradient(135deg, var(--dt68-primary-color), #0056b3);
    padding: 100px 0;
    text-align: center;
    color: var(--dt68-text-light);
    position: relative;
    overflow: hidden;
}

.page-promotions-dt68-exclusive-details__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--dt68-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-dt68-exclusive-details__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-dt68-exclusive-details__section {
    padding: 60px 0;
    background-color: var(--dt68-dark-bg);
}

.page-promotions-dt68-exclusive-details__section:nth-of-type(even) {
    background-color: #20203a;
}

.page-promotions-dt68-exclusive-details__section-title {
    font-size: 2.5em;
    color: var(--dt68-secondary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-dt68-exclusive-details__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--dt68-primary-color);
    border-radius: 2px;
}

.page-promotions-dt68-exclusive-details__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: var(--dt68-text-light);
}

.page-promotions-dt68-exclusive-details__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-promotions-dt68-exclusive-details__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-promotions-dt68-exclusive-details__text-content {
    flex: 1;
}

.page-promotions-dt68-exclusive-details__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: var(--dt68-text-light);
}

.page-promotions-dt68-exclusive-details__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-promotions-dt68-exclusive-details__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-dt68-exclusive-details__btn--primary {
    background-color: var(--dt68-primary-color);
    color: var(--dt68-text-light);
    border: 2px solid var(--dt68-primary-color);
}

.page-promotions-dt68-exclusive-details__btn--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.3);
}

.page-promotions-dt68-exclusive-details__btn--secondary {
    background-color: var(--dt68-secondary-color);
    color: var(--dt68-dark-bg);
    border: 2px solid var(--dt68-secondary-color);
    margin-top: 20px;
}

.page-promotions-dt68-exclusive-details__btn--secondary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-promotions-dt68-exclusive-details__btn--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    width: fit-content;
}

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

.page-promotions-dt68-exclusive-details__step-card {
    background-color: var(--dt68-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-dt68-exclusive-details__step-title {
    font-size: 1.6em;
    color: var(--dt68-primary-color);
    margin-bottom: 15px;
}

.page-promotions-dt68-exclusive-details__step-card p {
    color: var(--dt68-text-light);
    margin-bottom: 20px;
}

.page-promotions-dt68-exclusive-details__step-image {
    max-width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-promotions-dt68-exclusive-details__subsection-title {
    font-size: 2em;
    color: var(--dt68-secondary-color);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
}

.page-promotions-dt68-exclusive-details__list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-promotions-dt68-exclusive-details__list li {
    background-color: var(--dt68-card-bg);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid var(--dt68-primary-color);
    border-radius: 5px;
    color: var(--dt68-text-light);
    font-size: 1.05em;
}

.page-promotions-dt68-exclusive-details__list li strong {
    color: var(--dt68-secondary-color);
}

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

.page-promotions-dt68-exclusive-details__promo-card {
    background-color: var(--dt68-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-promotions-dt68-exclusive-details__promo-image {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-promotions-dt68-exclusive-details__promo-title {
    font-size: 1.8em;
    color: var(--dt68-primary-color);
    margin-bottom: 15px;
}

.page-promotions-dt68-exclusive-details__promo-card p {
    color: var(--dt68-text-light);
}

.page-promotions-dt68-exclusive-details__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-dt68-exclusive-details__feature-item {
    background-color: var(--dt68-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-promotions-dt68-exclusive-details__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--dt68-secondary-color));
}

.page-promotions-dt68-exclusive-details__feature-title {
    font-size: 1.5em;
    color: var(--dt68-secondary-color);
    margin-bottom: 15px;
}

.page-promotions-dt68-exclusive-details__feature-item p {
    color: var(--dt68-text-light);
}

.page-promotions-dt68-exclusive-details__button-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-promotions-dt68-exclusive-details__button-group .page-promotions-dt68-exclusive-details__btn {
    flex: 1;
    min-width: 180px;
}

.page-promotions-dt68-exclusive-details__faq-item {
    background-color: var(--dt68-card-bg);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-dt68-exclusive-details__faq-question {
    font-size: 1.4em;
    color: var(--dt68-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-dt68-exclusive-details__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    font-weight: bold;
    color: var(--dt68-secondary-color);
}

.page-promotions-dt68-exclusive-details__faq-question.active::after {
    content: '-';
}

.page-promotions-dt68-exclusive-details__faq-answer {
    color: var(--dt68-text-light);
    font-size: 1.05em;
    display: none;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.page-promotions-dt68-exclusive-details__faq-answer.active {
    display: block;
}

.page-promotions-dt68-exclusive-details__cta {
    background: linear-gradient(45deg, #0056b3, var(--dt68-primary-color));
    text-align: center;
    padding: 80px 0;
}

.page-promotions-dt68-exclusive-details__cta .page-promotions-dt68-exclusive-details__section-title {
    color: var(--dt68-secondary-color);
}

.page-promotions-dt68-exclusive-details__cta .page-promotions-dt68-exclusive-details__section-title::after {
    background-color: var(--dt68-secondary-color);
}

.page-promotions-dt68-exclusive-details__cta .page-promotions-dt68-exclusive-details__section-description {
    color: var(--dt68-text-light);
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-dt68-exclusive-details__content-wrapper {
        flex-direction: column;
    }
    .page-promotions-dt68-exclusive-details__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-promotions-dt68-exclusive-details__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-dt68-exclusive-details__section-title {
        font-size: 2em;
    }
    .page-promotions-dt68-exclusive-details__button-group {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-promotions-dt68-exclusive-details__hero {
        padding: 80px 0;
    }
    .page-promotions-dt68-exclusive-details__hero-title {
        font-size: 2em;
    }
    .page-promotions-dt68-exclusive-details__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-dt68-exclusive-details__section-title {
        font-size: 1.8em;
    }
    .page-promotions-dt68-exclusive-details__steps-grid,
    .page-promotions-dt68-exclusive-details__promo-grid,
    .page-promotions-dt68-exclusive-details__features-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-dt68-exclusive-details__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-dt68-exclusive-details__step-title,
    .page-promotions-dt68-exclusive-details__promo-title,
    .page-promotions-dt68-exclusive-details__feature-title {
        font-size: 1.4em;
    }
    .page-promotions-dt68-exclusive-details__faq-question {
        font-size: 1.2em;
    }
}