.update-timeline {
    position: relative;
    padding: 2rem 0;
}

.update-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, 
        rgba(183, 148, 246, 0.8) 0%,
        rgba(183, 148, 246, 0.4) 100%);
    border-radius: 3px;
}

.update-entry {
    position: relative;
    margin-left: 2rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.update-entry::before {
    content: '';
    position: absolute;
    left: -2.65rem;
    top: 2rem;
    width: 1rem;
    height: 1rem;
    background: #b794f6;
    border-radius: 50%;
    border: 3px solid #282828;
    box-shadow: 0 0 10px rgba(183, 148, 246, 0.5);
}

.update-entry.latest {
    background: linear-gradient(135deg, 
        rgba(183, 148, 246, 0.2) 0%,
        rgba(40, 40, 40, 0.6) 100%);
    border: 1px solid #b794f6;
}

.update-entry.latest::before {
    background: #ffffff;
    box-shadow: 0 0 15px rgba(183, 148, 246, 0.8);
}

.update-entry:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: rgba(30, 20, 40, 0.6);
}

.update-entry.latest:hover {
    background: linear-gradient(135deg, 
        rgba(183, 148, 246, 0.3) 0%,
        rgba(48, 48, 48, 0.6) 100%);
}

.update-date {
    font-family: 'Consolas', monospace;
    color: #b794f6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.update-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(183, 148, 246, 0.3);
}

.update-content h4 {
    color: #dfc8ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.update-content h3,
.update-content h4 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.update-category {
    margin-bottom: 1.5rem;
}

.update-category ul {
    margin: 0;
    padding-left: 1.5rem;
}

.update-content {
    font-family: 'Consolas', monospace;
}

.update-category li {
    color: #e0e0e0;
    margin: 0.3rem 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}


@media (min-width: 769px) {
    .update-entry {
        margin-left: 1.5rem;
        padding: 1rem;
    }

    .update-category ul {
        padding-left: 1rem;
    }

    .update-category li {
        white-space: pre;
        padding-right: 0.5rem;
        font-size: 0.9rem;
        display: flex;
        gap: 0.5rem;
        justify-content: space-between;
    }

    .update-content h3 {
        font-size: 1.3rem;
    }

    .update-content h4 {
        font-size: 1rem;
    }
}