body {
    padding: 3rem 1rem;
}

h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-purple);
}

.list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.item {
    display: block;
    background: #1a1a2e;
    border-radius: 10px;
    padding: 1rem 1.4rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.2s, transform 0.15s;
    border: 1px solid #282845;
}

.item:hover {
    background: #23234a;
    transform: translateX(4px);
}

.item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f8f8f2;
}

.item-subtitle {
    font-size: 0.85rem;
    color: #8892b0;
    margin-top: 0.25rem;
    line-height: 1.4;
}

.item-name {
    font-size: 0.8rem;
    color: #6272a4;
    margin-top: 0.2rem;
}

.back {
    display: inline-block;
    margin-top: 2rem;
    color: #6272a4;
    text-decoration: none;
    font-size: 0.9rem;
}

.back:hover { color: var(--accent-purple); }
