.app-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-icon {
    display: flex;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--border);
    font-size: 1.5rem;
}

.app-text {
    flex: 1;
}

.app-name {
    margin-bottom: 3px;
    font-size: 1rem;
    font-weight: 700;
}

.app-sub {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

.app-arrow {
    color: var(--muted);
    font-size: 1.1rem;
    transition: transform 0.18s;
}

.social-pill {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
}

@media (hover: hover) {
    .app-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .app-card:hover .app-arrow {
        transform: translate(2px, -2px);
    }

    .social-pill:hover {
        border-color: var(--muted);
        color: var(--text);
    }
}
