.minimal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--card);
    border-bottom: var(--border-width) solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.minimal-header h1 {
    font-size: 1.2rem;
    margin: 0;
}
.header-btns {
    display: flex;
    gap: 1rem;
}
.header-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.overlay.active {
    display: flex;
}
.modal {
    background: var(--bg);
    border: var(--border-width) solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: var(--border-width) solid var(--border);
    padding-bottom: 0.5rem;
}
.modal-header h2 {
    margin: 0;
    border: none;
    font-size: 1.5rem;
}
.app-card-minimal {
    border: var(--border-width) solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--card);
}
.app-card-minimal h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.app-card-minimal p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.feed-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
}
.feed-item:last-child {
    border-bottom: none;
}
.feed-item span {
    font-size: 0.9rem;
    word-break: break-all;
    margin-right: 1rem;
}