body {
    background: #212121;
    color: #ebeae4;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: #28333a;
    padding: 2rem 0 1rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

h1 {
    margin: 0;
    font-size: 2.4rem;
    letter-spacing: 1px;
}

main {
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 2rem;
}

.timeline-event {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 700px;
    margin-bottom: 2.5rem;
    background: #292929;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    padding: 1.2rem 1.5rem;
    transition: background 0.2s;
}

.timeline-event:hover {
    background: #404f5b;
}

.timeline-event-img {
    width: 112px;
    height: 112px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 1.6rem;
    background: #131313;
    border: 2px solid #444;
}

.timeline-event-content {
    flex: 1;
}

.timeline-event-title {
    font-size: 1.26rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #fee780;
}

.timeline-event-date {
    font-size: 1rem;
    color: #b1b1b1;
    margin-bottom: 0.6rem;
}

.timeline-event-desc {
    font-size: 1.07rem;
    line-height: 1.45;
}

/* For spacing and responsiveness */
@media (max-width: 650px) {
    .timeline-event {
        flex-direction: column;
        align-items: flex-start;
    }
    .timeline-event-img {
        margin-bottom: 1rem;
        margin-right: 0;
        width: 96px;
        height: 96px;
    }
}

