/* Animated Timeline Slider */
.timeline-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0 60px;
}

.ts-track {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ts-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ts-item.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    visibility: visible;
    z-index: 2;
}

.ts-item.prev {
    transform: translateX(-40px) scale(0.95);
}

.ts-date {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-shadow: 0 0 24px rgba(192, 109, 255, 0.5);
}

.ts-content {
    width: 100%;
    max-width: 600px;
    padding: 28px;
    border-radius: 24px;
}

.ts-content strong {
    display: block;
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
}

.ts-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ts-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.ts-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.ts-dots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 60%;
}

.ts-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0;
}

.ts-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.ts-dot.active {
    width: 28px;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(192, 109, 255, 0.6);
}

@media (max-width: 600px) {
    .ts-date {
        font-size: 22px;
    }

    .ts-content {
        padding: 20px;
    }

    .ts-content strong {
        font-size: 18px;
    }

    .ts-dots {
        max-width: 60%;
    }
}