.current-projects {
    padding: 5rem 2rem;
    background: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--paper);
    padding: 2.5rem 2.5rem 2rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--paper-deep);
}

.card-corner {
    position: absolute;
    width: 16px;
    height: 16px;
}

.card-corner::before,
.card-corner::after {
    content: '';
    position: absolute;
    background: var(--vermilion);
    transition: var(--transition);
}

.card-corner.tl {
    top: 8px;
    left: 8px;
}

.card-corner.tl::before {
    top: 0;
    left: 0;
    width: 16px;
    height: 1px;
}

.card-corner.tl::after {
    top: 0;
    left: 0;
    width: 1px;
    height: 16px;
}

.card-corner.tr {
    top: 8px;
    right: 8px;
}

.card-corner.tr::before {
    top: 0;
    right: 0;
    width: 16px;
    height: 1px;
}

.card-corner.tr::after {
    top: 0;
    right: 0;
    width: 1px;
    height: 16px;
}

.card-corner.bl {
    bottom: 8px;
    left: 8px;
}

.card-corner.bl::before {
    bottom: 0;
    left: 0;
    width: 16px;
    height: 1px;
}

.card-corner.bl::after {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 16px;
}

.card-corner.br {
    bottom: 8px;
    right: 8px;
}

.card-corner.br::before {
    bottom: 0;
    right: 0;
    width: 16px;
    height: 1px;
}

.card-corner.br::after {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 16px;
}

.project-card:hover {
    border-color: var(--vermilion);
    box-shadow: 0 8px 30px rgba(194, 58, 43, 0.08);
}

.project-card:hover .card-corner::before,
.project-card:hover .card-corner::after {
    width: 24px;
    height: 1px;
}

.project-card:hover .card-corner::after {
    width: 1px;
    height: 24px;
}

.project-status {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 0.25rem 0.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.project-status.completed {
    color: var(--jade);
    border: 1px solid var(--jade);
}

.project-status.developing {
    color: var(--gold);
    border: 1px solid var(--gold);
}

.project-name {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.name-label {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 3px;
}

.name-version {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--vermilion);
    font-weight: 700;
}

.project-desc {
    color: var(--ink-light);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}

.project-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--paper-dark);
    color: var(--ink-light);
    padding: 0.25rem 0.8rem;
    border-radius: 2px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.tag:hover {
    background: var(--vermilion);
    color: #fff;
}

.future-plans {
    padding: 5rem 2rem;
    background: var(--ink);
    position: relative;
}

.future-plans .section-title {
    color: var(--paper);
}

.future-plans .section-subtitle {
    color: rgba(245, 240, 232, 0.3);
}

.future-plans .section-ornament {
    background: var(--gold);
}

.future-plans .section-ornament::before,
.future-plans .section-ornament::after {
    background: var(--gold);
}

.timeline {
    max-width: 600px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--gold), rgba(184, 134, 11, 0.2));
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-node {
    flex: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.3rem;
}

.node-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

.timeline-body {
    flex: 1;
    margin-left: 1.5rem;
    padding-bottom: 0.5rem;
}

.timeline-date {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.timeline-body h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--paper);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.timeline-body p {
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.8;
    font-size: 0.88rem;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        padding: 2rem 1.5rem 1.5rem;
    }

    .name-label {
        font-size: 1.3rem;
    }
}
