@import url('../../neon-premium/css/styles.css');

/* Timeline Styles */
.neon-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.neon-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    padding: 0 20px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item .time {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .neon-timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        text-align: left;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }
}